Lines Matching refs:nsmooth

425   SNES        nsmooth;  in SNESFASCycleCreateSmoother_Private()  local
433 PetscCall(SNESCreate(PetscObjectComm((PetscObject)snes), &nsmooth)); in SNESFASCycleCreateSmoother_Private()
436 PetscCall(SNESAppendOptionsPrefix(nsmooth, optionsprefix)); in SNESFASCycleCreateSmoother_Private()
437 PetscCall(SNESAppendOptionsPrefix(nsmooth, tprefix)); in SNESFASCycleCreateSmoother_Private()
438 PetscCall(SNESSetType(nsmooth, SNESNEWTONLS)); in SNESFASCycleCreateSmoother_Private()
439 …PetscCall(SNESSetTolerances(nsmooth, nsmooth->abstol, nsmooth->rtol, nsmooth->stol, nsmooth->max_i… in SNESFASCycleCreateSmoother_Private()
442 PetscCall(SNESAppendOptionsPrefix(nsmooth, optionsprefix)); in SNESFASCycleCreateSmoother_Private()
443 PetscCall(SNESAppendOptionsPrefix(nsmooth, tprefix)); in SNESFASCycleCreateSmoother_Private()
444 PetscCall(SNESSetType(nsmooth, SNESNRICHARDSON)); in SNESFASCycleCreateSmoother_Private()
445 PetscCall(SNESSetTolerances(nsmooth, 0.0, 0.0, 0.0, fas->max_down_it, nsmooth->max_funcs)); in SNESFASCycleCreateSmoother_Private()
447 PetscCall(PetscObjectIncrementTabLevel((PetscObject)nsmooth, (PetscObject)snes, 1)); in SNESFASCycleCreateSmoother_Private()
448 PetscCall(PetscObjectCopyFortranFunctionPointers((PetscObject)snes, (PetscObject)nsmooth)); in SNESFASCycleCreateSmoother_Private()
449 PetscCall(PetscObjectComposedDataSetInt((PetscObject)nsmooth, PetscMGLevelId, fas->level)); in SNESFASCycleCreateSmoother_Private()
450 *smooth = nsmooth; in SNESFASCycleCreateSmoother_Private()