Lines Matching refs:abstol
426 …ative=%g, absolute=%g, solution=%g\n", (double)snes->rtol, (double)snes->abstol, (double)snes->sto… in SNESView()
969 PetscReal rtol, abstol, stol; in SNESSetFromOptions() local
983 abstol = snes->abstol; in SNESSetFromOptions()
989 …-snes_atol", "Stop if function norm less than", "SNESSetTolerances", snes->abstol, &abstol, NULL)); in SNESSetFromOptions()
993 PetscCall(SNESSetTolerances(snes, abstol, rtol, stol, max_its, max_funcs)); in SNESSetFromOptions()
1795 PetscObjectParameterSetDefault(snes, abstol, PetscDefined(USE_REAL_SINGLE) ? 1.e-25 : 1.e-50); in SNESParametersInitialize()
3927 PetscErrorCode SNESSetTolerances(SNES snes, PetscReal abstol, PetscReal rtol, PetscReal stol, Petsc… in SNESSetTolerances() argument
3931 PetscValidLogicalCollectiveReal(snes, abstol, 2); in SNESSetTolerances()
3937 if (abstol == (PetscReal)PETSC_DETERMINE) { in SNESSetTolerances()
3938 snes->abstol = snes->default_abstol; in SNESSetTolerances()
3939 } else if (abstol != (PetscReal)PETSC_CURRENT) { in SNESSetTolerances()
3940 …scCheck(abstol >= 0.0, PetscObjectComm((PetscObject)snes), PETSC_ERR_ARG_OUTOFRANGE, "Absolute tol… in SNESSetTolerances()
3941 snes->abstol = abstol; in SNESSetTolerances()
4046 if (atol) *atol = snes->abstol; in SNESGetTolerances()