Lines Matching refs:vatol
1945 …if (ts->vatol) PetscCall(PetscViewerASCIIPrintf(viewer, "using vector of absolute error tolerances… in TSView()
2604 PetscCall(VecDestroy(&ts->vatol)); in TSReset()
5157 PetscErrorCode TSSetTolerances(TS ts, PetscReal atol, Vec vatol, PetscReal rtol, Vec vrtol) in TSSetTolerances() argument
5167 if (vatol) { in TSSetTolerances()
5168 PetscCall(PetscObjectReference((PetscObject)vatol)); in TSSetTolerances()
5169 PetscCall(VecDestroy(&ts->vatol)); in TSSetTolerances()
5170 ts->vatol = vatol; in TSSetTolerances()
5206 PetscErrorCode TSGetTolerances(TS ts, PetscReal *atol, Vec *vatol, PetscReal *rtol, Vec *vrtol) in TSGetTolerances() argument
5210 if (vatol) *vatol = ts->vatol; 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()