Lines Matching defs:tao

26   Tao  tao          = (Tao)ctx;  in KSPPreSolve_TAOEW_Private()  local
43 Tao tao = (Tao)ctx; in KSPPostSolve_TAOEW_Private() local
52 static PetscErrorCode TaoSetUpEW_Private(Tao tao) in TaoSetUpEW_Private()
89 PetscErrorCode TaoParametersInitialize(Tao tao) in TaoParametersInitialize()
124 Tao tao; in TaoCreate() local
158 PetscErrorCode TaoSolve(Tao tao) in TaoSolve()
227 PetscErrorCode TaoSetUp(Tao tao) in TaoSetUp()
251 PetscErrorCode TaoDestroy(Tao *tao) in TaoDestroy()
333 PetscErrorCode TaoKSPSetUseEW(Tao tao, PetscBool flag) in TaoKSPSetUseEW()
364 PetscErrorCode TaoMonitorSetFromOptions(Tao tao, const char name[], const char help[], const char m… in TaoMonitorSetFromOptions() argument
432 PetscErrorCode TaoSetFromOptions(Tao tao) in TaoSetFromOptions()
624 PetscErrorCode TaoView(Tao tao, PetscViewer viewer) in TaoView()
785 PetscErrorCode TaoSetRecycleHistory(Tao tao, PetscBool recycle) in TaoSetRecycleHistory()
810 PetscErrorCode TaoGetRecycleHistory(Tao tao, PetscBool *recycle) in TaoGetRecycleHistory()
854 PetscErrorCode TaoSetTolerances(Tao tao, PetscReal gatol, PetscReal grtol, PetscReal gttol) in TaoSetTolerances()
911 PetscErrorCode TaoSetConstraintTolerances(Tao tao, PetscReal catol, PetscReal crtol) in TaoSetConstraintTolerances()
950 PetscErrorCode TaoGetConstraintTolerances(Tao tao, PetscReal *catol, PetscReal *crtol) in TaoGetConstraintTolerances()
977 PetscErrorCode TaoSetFunctionLowerBound(Tao tao, PetscReal fmin) in TaoSetFunctionLowerBound()
1003 PetscErrorCode TaoGetFunctionLowerBound(Tao tao, PetscReal *fmin) in TaoGetFunctionLowerBound()
1034 PetscErrorCode TaoSetMaximumFunctionEvaluations(Tao tao, PetscInt nfcn) in TaoSetMaximumFunctionEvaluations()
1065 PetscErrorCode TaoGetMaximumFunctionEvaluations(Tao tao, PetscInt *nfcn) in TaoGetMaximumFunctionEvaluations()
1089 PetscErrorCode TaoGetCurrentFunctionEvaluations(Tao tao, PetscInt *nfuncs) in TaoGetCurrentFunctionEvaluations()
1120 PetscErrorCode TaoSetMaximumIterations(Tao tao, PetscInt maxits) in TaoSetMaximumIterations()
1151 PetscErrorCode TaoGetMaximumIterations(Tao tao, PetscInt *maxits) in TaoGetMaximumIterations()
1179 PetscErrorCode TaoSetInitialTrustRegionRadius(Tao tao, PetscReal radius) in TaoSetInitialTrustRegionRadius()
1208 PetscErrorCode TaoGetInitialTrustRegionRadius(Tao tao, PetscReal *radius) in TaoGetInitialTrustRegionRadius()
1232 PetscErrorCode TaoGetCurrentTrustRegionRadius(Tao tao, PetscReal *radius) in TaoGetCurrentTrustRegionRadius()
1261 PetscErrorCode TaoGetTolerances(Tao tao, PetscReal *gatol, PetscReal *grtol, PetscReal *gttol) in TaoGetTolerances()
1286 PetscErrorCode TaoGetKSP(Tao tao, KSP *ksp) in TaoGetKSP()
1314 PetscErrorCode TaoGetLinearSolveIterations(Tao tao, PetscInt *lits) in TaoGetLinearSolveIterations()
1338 PetscErrorCode TaoGetLineSearch(Tao tao, TaoLineSearch *ls) in TaoGetLineSearch()
1358 PetscErrorCode TaoAddLineSearchCounts(Tao tao) in TaoAddLineSearchCounts()
1395 PetscErrorCode TaoGetSolution(Tao tao, Vec *X) in TaoGetSolution()
1418 PetscErrorCode TaoResetStatistics(Tao tao) in TaoResetStatistics()
1465 PetscErrorCode TaoSetUpdate(Tao tao, PetscErrorCode (*func)(Tao tao, PetscInt it, PetscCtx ctx), Pe… in TaoSetUpdate()
1498 PetscErrorCode TaoSetConvergenceTest(Tao tao, PetscErrorCode (*conv)(Tao, void *), PetscCtx ctx) in TaoSetConvergenceTest() argument
1538 PetscErrorCode TaoMonitorSet(Tao tao, PetscErrorCode (*func)(Tao, PetscCtx), PetscCtx ctx, PetscCtx… in TaoMonitorSet() argument
1576 PetscErrorCode TaoMonitorCancel(Tao tao) in TaoMonitorCancel()
1609 PetscErrorCode TaoMonitorDefault(Tao tao, PetscViewerAndFormat *vf) in TaoMonitorDefault()
1663 PetscErrorCode TaoMonitorGlobalization(Tao tao, PetscViewerAndFormat *vf) in TaoMonitorGlobalization()
1719 PetscErrorCode TaoMonitorDefaultShort(Tao tao, PetscViewerAndFormat *vf) in TaoMonitorDefaultShort()
1770 PetscErrorCode TaoMonitorConstraintNorm(Tao tao, PetscViewerAndFormat *vf) in TaoMonitorConstraintNorm()
1811 PetscErrorCode TaoMonitorSolution(Tao tao, PetscViewerAndFormat *vf) in TaoMonitorSolution()
1838 PetscErrorCode TaoMonitorGradient(Tao tao, PetscViewerAndFormat *vf) in TaoMonitorGradient()
1865 PetscErrorCode TaoMonitorStep(Tao tao, PetscViewerAndFormat *vf) in TaoMonitorStep()
1897 PetscErrorCode TaoMonitorSolutionDraw(Tao tao, PetscCtx ctx) in TaoMonitorSolutionDraw()
1924 PetscErrorCode TaoMonitorGradientDraw(Tao tao, PetscCtx ctx) in TaoMonitorGradientDraw()
1951 PetscErrorCode TaoMonitorStepDraw(Tao tao, PetscCtx ctx) in TaoMonitorStepDraw()
1978 PetscErrorCode TaoMonitorResidual(Tao tao, PetscViewerAndFormat *vf) in TaoMonitorResidual()
2009 PetscErrorCode TaoDefaultConvergenceTest(Tao tao, void *dummy) in TaoDefaultConvergenceTest()
2089 PetscErrorCode TaoSetOptionsPrefix(Tao tao, const char p[]) in TaoSetOptionsPrefix()
2116 PetscErrorCode TaoAppendOptionsPrefix(Tao tao, const char p[]) in TaoAppendOptionsPrefix()
2142 PetscErrorCode TaoGetOptionsPrefix(Tao tao, const char *p[]) in TaoGetOptionsPrefix()
2167 PetscErrorCode TaoSetType(Tao tao, TaoType type) in TaoSetType()
2276 PetscErrorCode TaoGetIterationNumber(Tao tao, PetscInt *iter) in TaoGetIterationNumber()
2305 PetscErrorCode TaoGetResidualNorm(Tao tao, PetscReal *value) in TaoGetResidualNorm()
2327 PetscErrorCode TaoSetIterationNumber(Tao tao, PetscInt iter) in TaoSetIterationNumber()
2359 PetscErrorCode TaoGetTotalIterationNumber(Tao tao, PetscInt *iter) in TaoGetTotalIterationNumber()
2381 PetscErrorCode TaoSetTotalIterationNumber(Tao tao, PetscInt iter) in TaoSetTotalIterationNumber()
2405 PetscErrorCode TaoSetConvergedReason(Tao tao, TaoConvergedReason reason) in TaoSetConvergedReason()
2429 PetscErrorCode TaoGetConvergedReason(Tao tao, TaoConvergedReason *reason) in TaoGetConvergedReason()
2464 PetscErrorCode TaoGetSolutionStatus(Tao tao, PetscInt *its, PetscReal *f, PetscReal *gnorm, PetscRe… in TaoGetSolutionStatus()
2492 PetscErrorCode TaoGetType(Tao tao, TaoType *type) in TaoGetType()
2522 PetscErrorCode TaoMonitor(Tao tao, PetscInt its, PetscReal f, PetscReal res, PetscReal cnorm, Petsc… in TaoMonitor()
2574 PetscErrorCode TaoSetConvergenceHistory(Tao tao, PetscReal obj[], PetscReal resid[], PetscReal cnor… in TaoSetConvergenceHistory()
2633 PetscErrorCode TaoGetConvergenceHistory(Tao tao, PetscReal **obj, PetscReal **resid, PetscReal **cn… in TaoGetConvergenceHistory()
2664 PetscErrorCode TaoSetApplicationContext(Tao tao, PetscCtx ctx) in TaoSetApplicationContext()
2693 PetscErrorCode TaoGetApplicationContext(Tao tao, PetscCtxRt ctx) in TaoGetApplicationContext()
2715 PetscErrorCode TaoSetGradientNorm(Tao tao, Mat M) in TaoSetGradientNorm()
2743 PetscErrorCode TaoGetGradientNorm(Tao tao, Mat *M) in TaoGetGradientNorm()
2778 PetscErrorCode TaoGradientNorm(Tao tao, Vec gradient, NormType type, PetscReal *gnorm) in TaoGradientNorm()