Lines Matching refs:clip
265 … PetscCall(PetscViewerASCIIPrintf(viewer, " clip fastest increase %g\n", (double)adapt->clip[1])); in TSAdaptView()
266 … PetscCall(PetscViewerASCIIPrintf(viewer, " clip fastest decrease %g\n", (double)adapt->clip[0])); in TSAdaptView()
561 if (low != (PetscReal)PETSC_CURRENT) adapt->clip[0] = low; in TSAdaptSetClip()
562 if (high != (PetscReal)PETSC_CURRENT) adapt->clip[1] = high; in TSAdaptSetClip()
588 if (low) *low = adapt->clip[0]; in TSAdaptGetClip()
589 if (high) *high = adapt->clip[1]; in TSAdaptGetClip()
743 PetscReal safety, reject_safety, clip[2], scale, hmin, hmax; in TSAdaptSetFromOptions() local
765 clip[0] = adapt->clip[0]; in TSAdaptSetFromOptions()
766 clip[1] = adapt->clip[1]; in TSAdaptSetFromOptions()
767 …pt_clip", "Admissible decrease/increase factor in step size", "TSAdaptSetClip", clip, &two, &set)); in TSAdaptSetFromOptions()
769 if (set) PetscCall(TSAdaptSetClip(adapt, clip[0], clip[1])); in TSAdaptSetFromOptions()
1153 adapt->clip[0] = 0.1; in TSAdaptCreate()
1154 adapt->clip[1] = 10.; in TSAdaptCreate()