Lines Matching refs:smoothu
211 …if (!fas->smoothu && fas->level != 0) PetscCall(SNESFASCycleCreateSmoother_Private(snes, &fas->smo… in SNESFASSetNumberSmoothUp()
212 …if (fas->smoothu) PetscCall(SNESSetTolerances(fas->smoothu, fas->smoothu->abstol, fas->smoothu->rt… in SNESFASSetNumberSmoothUp()
278 if (!fas->smoothu) PetscCall(SNESFASCycleCreateSmoother_Private(snes, &fas->smoothu)); in SNESFASSetContinuation()
280 PetscCall(SNESSetOptionsPrefix(fas->smoothu, optionsprefix)); in SNESFASSetContinuation()
281 PetscCall(SNESAppendOptionsPrefix(fas->smoothu, tprefix)); in SNESFASSetContinuation()
282 PetscCall(SNESSetType(fas->smoothu, SNESNEWTONLS)); in SNESFASSetContinuation()
283 …PetscCall(SNESSetTolerances(fas->smoothu, fas->fine->abstol, fas->fine->rtol, fas->fine->stol, 50,… in SNESFASSetContinuation()
526 PetscErrorCode SNESFASCycleGetSmootherUp(SNES snes, SNES *smoothu) in SNESFASCycleGetSmootherUp() argument
532 PetscAssertPointer(smoothu, 2); in SNESFASCycleGetSmootherUp()
534 if (!fas->smoothu) *smoothu = fas->smoothd; in SNESFASCycleGetSmootherUp()
535 else *smoothu = fas->smoothu; in SNESFASCycleGetSmootherUp()
1017 if (!fas->smoothu) PetscCall(SNESFASCycleCreateSmoother_Private(levelsnes, &fas->smoothu)); in SNESFASGetSmootherDown()
1048 if (!fas->smoothu) PetscCall(SNESFASCycleCreateSmoother_Private(levelsnes, &fas->smoothu)); in SNESFASGetSmootherUp()
1049 *smooth = fas->smoothu; in SNESFASGetSmootherUp()