Lines Matching refs:vrtol
1943 …if (ts->vrtol) PetscCall(PetscViewerASCIIPrintf(viewer, " using vector of relative error toleranc… in TSView()
2605 PetscCall(VecDestroy(&ts->vrtol)); in TSReset()
5157 PetscErrorCode TSSetTolerances(TS ts, PetscReal atol, Vec vatol, PetscReal rtol, Vec vrtol) in TSSetTolerances() argument
5180 if (vrtol) { in TSSetTolerances()
5181 PetscCall(PetscObjectReference((PetscObject)vrtol)); in TSSetTolerances()
5182 PetscCall(VecDestroy(&ts->vrtol)); in TSSetTolerances()
5183 ts->vrtol = vrtol; in TSSetTolerances()
5206 PetscErrorCode TSGetTolerances(TS ts, PetscReal *atol, Vec *vatol, PetscReal *rtol, Vec *vrtol) in TSGetTolerances() argument
5212 if (vrtol) *vrtol = ts->vrtol; in TSGetTolerances()
5251 …PetscCall(VecErrorWeightedNorms(U, Y, NULL, wnormtype, ts->atol, ts->vatol, ts->rtol, ts->vrtol, t… in TSErrorWeightedNorm()
5293 …PetscCall(VecErrorWeightedNorms(U, Y, E, wnormtype, ts->atol, ts->vatol, ts->rtol, ts->vrtol, ts->… in TSErrorWeightedENorm()