Lines Matching refs:max_funcs
92 PetscObjectParameterSetDefault(tao, max_funcs, PETSC_UNLIMITED); in TaoParametersInitialize()
480 … evaluations exceeds", "TaoSetMaximumFunctionEvaluations", tao->max_funcs, &tao->max_funcs, &flg)); in TaoSetFromOptions()
481 if (flg) PetscCall(TaoSetMaximumFunctionEvaluations(tao, tao->max_funcs)); in TaoSetFromOptions()
676 …if (tao->max_funcs == PETSC_UNLIMITED) PetscCall(PetscViewerASCIIPrintf(viewer, " (… in TaoView()
677 …Call(PetscViewerASCIIPrintf(viewer, " (max: %" PetscInt_FMT ")\n", tao->max_funcs)); in TaoView()
681 …if (tao->max_funcs == PETSC_UNLIMITED) PetscCall(PetscViewerASCIIPrintf(viewer, " (… in TaoView()
682 …Call(PetscViewerASCIIPrintf(viewer, " (max: %" PetscInt_FMT ")\n", tao->max_funcs)); in TaoView()
686 …if (tao->max_funcs == PETSC_UNLIMITED) PetscCall(PetscViewerASCIIPrintf(viewer, " (max: unlimit… in TaoView()
687 … else PetscCall(PetscViewerASCIIPrintf(viewer, " (max: %" PetscInt_FMT ")\n", tao->max_funcs)); in TaoView()
1040 tao->max_funcs = tao->default_max_funcs; in TaoSetMaximumFunctionEvaluations()
1042 tao->max_funcs = PETSC_UNLIMITED; in TaoSetMaximumFunctionEvaluations()
1045 tao->max_funcs = nfcn; in TaoSetMaximumFunctionEvaluations()
1070 *nfcn = tao->max_funcs; in TaoGetMaximumFunctionEvaluations()
2012 PetscInt max_funcs = tao->max_funcs; in TaoDefaultConvergenceTest() local
2039 } else if (max_funcs != PETSC_UNLIMITED && nfuncs > max_funcs) { in TaoDefaultConvergenceTest()
2040 …imum number of function evaluations: %" PetscInt_FMT " > %" PetscInt_FMT "\n", nfuncs, max_funcs)); in TaoDefaultConvergenceTest()