xref: /petsc/include/petscsnes.h (revision b6266c6efdc9676972fa25886a79341296f4e451)
1f26ada1bSBarry Smith /*
2eef9c623SLois Curfman McInnes     User interface for the nonlinear solvers package.
3f26ada1bSBarry Smith */
40a835dfdSSatish Balay #if !defined(__PETSCSNES_H)
50a835dfdSSatish Balay #define __PETSCSNES_H
62c8e378dSBarry Smith #include <petscksp.h>
72c8e378dSBarry Smith #include <petscdmda.h>
8b1f5cb9dSBarry Smith 
9435da068SBarry Smith /*S
10435da068SBarry Smith      SNES - Abstract PETSc object that manages all nonlinear solves
11435da068SBarry Smith 
12435da068SBarry Smith    Level: beginner
13435da068SBarry Smith 
14435da068SBarry Smith   Concepts: nonlinear solvers
15435da068SBarry Smith 
1694b7f48cSBarry Smith .seealso:  SNESCreate(), SNESSetType(), SNESType, TS, KSP, KSP, PC
17435da068SBarry Smith S*/
18f09e8eb9SSatish Balay typedef struct _p_SNES* SNES;
19435da068SBarry Smith 
2076bdecfbSBarry Smith /*J
21435da068SBarry Smith     SNESType - String with the name of a PETSc SNES method or the creation function
22435da068SBarry Smith        with an optional dynamic library name, for example
23435da068SBarry Smith        http://www.mcs.anl.gov/petsc/lib.a:mysnescreate()
24435da068SBarry Smith 
25435da068SBarry Smith    Level: beginner
26435da068SBarry Smith 
27435da068SBarry Smith .seealso: SNESSetType(), SNES
2876bdecfbSBarry Smith J*/
2919fd82e9SBarry Smith typedef const char* SNESType;
3004d7464bSBarry Smith #define SNESNEWTONLS     "newtonls"
3104d7464bSBarry Smith #define SNESNEWTONTR     "newtontr"
321d6018f0SLisandro Dalcin #define SNESPYTHON       "python"
33eef9c623SLois Curfman McInnes #define SNESTEST         "test"
34d5c3842bSBarry Smith #define SNESNRICHARDSON  "nrichardson"
35b79b07cfSJed Brown #define SNESKSPONLY      "ksponly"
36f450aa47SBarry Smith #define SNESVINEWTONRSLS "vinewtonrsls"
37f450aa47SBarry Smith #define SNESVINEWTONSSLS "vinewtonssls"
384a0c5b0cSMatthew G Knepley #define SNESNGMRES       "ngmres"
394b11644fSPeter Brune #define SNESQN           "qn"
40c5ae4b9aSBarry Smith #define SNESSHELL        "shell"
413542a6bcSPeter Brune #define SNESGS           "gs"
42fef7b6d8SPeter Brune #define SNESNCG          "ncg"
43421d9b32SPeter Brune #define SNESFAS          "fas"
4437e1895aSJed Brown #define SNESMS           "ms"
45eaedb033SPeter Brune #define SNESNASM         "nasm"
46d5c3842bSBarry Smith 
47deeb6e72SMatthew Knepley /* Logging support */
48014dd563SJed Brown PETSC_EXTERN PetscClassId SNES_CLASSID;
4922c6f798SBarry Smith PETSC_EXTERN PetscClassId DMSNES_CLASSID;
50deeb6e72SMatthew Knepley 
51014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESInitializePackage(const char[]);
52deeb6e72SMatthew Knepley 
53014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESCreate(MPI_Comm,SNES*);
54014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESReset(SNES);
55014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESDestroy(SNES*);
5619fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode SNESSetType(SNES,SNESType);
57014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMonitor(SNES,PetscInt,PetscReal);
58014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMonitorSet(SNES,PetscErrorCode(*)(SNES,PetscInt,PetscReal,void*),void *,PetscErrorCode (*)(void**));
59014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMonitorCancel(SNES);
60014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetConvergenceHistory(SNES,PetscReal[],PetscInt[],PetscInt,PetscBool );
61014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetConvergenceHistory(SNES,PetscReal*[],PetscInt *[],PetscInt *);
62014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetUp(SNES);
63014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSolve(SNES,Vec,Vec);
64014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetErrorIfNotConverged(SNES,PetscBool );
65014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetErrorIfNotConverged(SNES,PetscBool  *);
66e113a28aSBarry Smith 
6784cb2905SBarry Smith 
68014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESAddOptionsChecker(PetscErrorCode (*)(SNES));
694d8f6ca9SMatthew Knepley 
70014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetUpdate(SNES, PetscErrorCode (*)(SNES, PetscInt));
71014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESDefaultUpdate(SNES, PetscInt);
724d8f6ca9SMatthew Knepley 
73014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESRegisterDestroy(void);
74014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESRegisterAll(const char[]);
7584cb2905SBarry Smith 
76014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESRegister(const char[],const char[],const char[],PetscErrorCode (*)(SNES));
7730de9b25SBarry Smith 
7830de9b25SBarry Smith /*MC
7930de9b25SBarry Smith    SNESRegisterDynamic - Adds a method to the nonlinear solver package.
8030de9b25SBarry Smith 
8130de9b25SBarry Smith    Synopsis:
82f2ba6396SBarry Smith     #include "petscsnes.h"
831890ba74SBarry Smith    PetscErrorCode SNESRegisterDynamic(const char *name_solver,const char *path,const char *name_create,PetscErrorCode (*routine_create)(SNES))
8430de9b25SBarry Smith 
8530de9b25SBarry Smith    Not collective
8630de9b25SBarry Smith 
8730de9b25SBarry Smith    Input Parameters:
8830de9b25SBarry Smith +  name_solver - name of a new user-defined solver
8930de9b25SBarry Smith .  path - path (either absolute or relative) the library containing this solver
9030de9b25SBarry Smith .  name_create - name of routine to create method context
9130de9b25SBarry Smith -  routine_create - routine to create method context
9230de9b25SBarry Smith 
9330de9b25SBarry Smith    Notes:
9430de9b25SBarry Smith    SNESRegisterDynamic() may be called multiple times to add several user-defined solvers.
9530de9b25SBarry Smith 
9630de9b25SBarry Smith    If dynamic libraries are used, then the fourth input argument (routine_create)
9730de9b25SBarry Smith    is ignored.
9830de9b25SBarry Smith 
99ab901514SBarry Smith    Environmental variables such as ${PETSC_ARCH}, ${PETSC_DIR}, ${PETSC_LIB_DIR},
10030de9b25SBarry Smith    and others of the form ${any_environmental_variable} occuring in pathname will be
10130de9b25SBarry Smith    replaced with appropriate values.
10230de9b25SBarry Smith 
10330de9b25SBarry Smith    Sample usage:
10430de9b25SBarry Smith .vb
10530de9b25SBarry Smith    SNESRegisterDynamic("my_solver",/home/username/my_lib/lib/libg/solaris/mylib.a,
10630de9b25SBarry Smith                 "MySolverCreate",MySolverCreate);
10730de9b25SBarry Smith .ve
10830de9b25SBarry Smith 
10930de9b25SBarry Smith    Then, your solver can be chosen with the procedural interface via
11030de9b25SBarry Smith $     SNESSetType(snes,"my_solver")
11130de9b25SBarry Smith    or at runtime via the option
11230de9b25SBarry Smith $     -snes_type my_solver
11330de9b25SBarry Smith 
11430de9b25SBarry Smith    Level: advanced
11530de9b25SBarry Smith 
11630de9b25SBarry Smith     Note: If your function is not being put into a shared library then use SNESRegister() instead
11730de9b25SBarry Smith 
11830de9b25SBarry Smith .keywords: SNES, nonlinear, register
11930de9b25SBarry Smith 
12030de9b25SBarry Smith .seealso: SNESRegisterAll(), SNESRegisterDestroy()
12130de9b25SBarry Smith M*/
122aa482453SBarry Smith #if defined(PETSC_USE_DYNAMIC_LIBRARIES)
123f1af5d2fSBarry Smith #define SNESRegisterDynamic(a,b,c,d) SNESRegister(a,b,c,0)
124b2002411SLois Curfman McInnes #else
125f1af5d2fSBarry Smith #define SNESRegisterDynamic(a,b,c,d) SNESRegister(a,b,c,d)
126b2002411SLois Curfman McInnes #endif
127b2002411SLois Curfman McInnes 
128014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetKSP(SNES,KSP*);
129014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetKSP(SNES,KSP);
130014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetSolution(SNES,Vec*);
131014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetSolutionUpdate(SNES,Vec*);
132014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetRhs(SNES,Vec*);
133014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESView(SNES,PetscViewer);
13455849f57SBarry Smith PETSC_EXTERN PetscErrorCode SNESLoad(SNES,PetscViewer);
13555849f57SBarry Smith 
13655849f57SBarry Smith #define SNES_FILE_CLASSID 1211224
1377bc3d0afSSatish Balay 
138014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetOptionsPrefix(SNES,const char[]);
139014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESAppendOptionsPrefix(SNES,const char[]);
140014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetOptionsPrefix(SNES,const char*[]);
141014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetFromOptions(SNES);
142014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESDefaultGetWork(SNES,PetscInt);
14340191667SLois Curfman McInnes 
144014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateSNESMF(SNES,Mat*);
145014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMFFDComputeJacobian(SNES,Vec,Mat*,Mat*,MatStructure*,void*);
1468f6e3e37SBarry Smith 
147014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatDAADSetSNES(Mat,SNES);
1483a7fca6bSBarry Smith 
14919fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode SNESGetType(SNES,SNESType*);
150014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMonitorDefault(SNES,PetscInt,PetscReal,void *);
151014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMonitorRange(SNES,PetscInt,PetscReal,void *);
152014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMonitorRatio(SNES,PetscInt,PetscReal,void *);
153014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMonitorSetRatio(SNES,PetscViewer);
154014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMonitorSolution(SNES,PetscInt,PetscReal,void *);
155014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMonitorResidual(SNES,PetscInt,PetscReal,void *);
156014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMonitorSolutionUpdate(SNES,PetscInt,PetscReal,void *);
157014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMonitorDefaultShort(SNES,PetscInt,PetscReal,void *);
1582e7541e6SPeter Brune PETSC_EXTERN PetscErrorCode SNESMonitorJacUpdateSpectrum(SNES,PetscInt,PetscReal,void *);
159014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetTolerances(SNES,PetscReal,PetscReal,PetscReal,PetscInt,PetscInt);
160014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetTolerances(SNES,PetscReal*,PetscReal*,PetscReal*,PetscInt*,PetscInt*);
161014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetTrustRegionTolerance(SNES,PetscReal);
162014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetFunctionNorm(SNES,PetscReal*);
163014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetFunctionNorm(SNES,PetscReal);
164014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetIterationNumber(SNES,PetscInt*);
165014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetIterationNumber(SNES,PetscInt);
1663d4c4710SBarry Smith 
167014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetNonlinearStepFailures(SNES,PetscInt*);
168014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetMaxNonlinearStepFailures(SNES,PetscInt);
169014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetMaxNonlinearStepFailures(SNES,PetscInt*);
170014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetNumberFunctionEvals(SNES,PetscInt*);
171b850b91aSLisandro Dalcin 
172014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetLagPreconditioner(SNES,PetscInt);
173014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetLagPreconditioner(SNES,PetscInt*);
174014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetLagJacobian(SNES,PetscInt);
175014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetLagJacobian(SNES,PetscInt*);
176014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetGridSequence(SNES,PetscInt);
177a8054027SBarry Smith 
178014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetLinearSolveIterations(SNES,PetscInt*);
179014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetLinearSolveFailures(SNES,PetscInt*);
180014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetMaxLinearSolveFailures(SNES,PetscInt);
181014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetMaxLinearSolveFailures(SNES,PetscInt*);
1823d4c4710SBarry Smith 
183014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESKSPSetUseEW(SNES,PetscBool );
184014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESKSPGetUseEW(SNES,PetscBool *);
185014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESKSPSetParametersEW(SNES,PetscInt,PetscReal,PetscReal,PetscReal,PetscReal,PetscReal,PetscReal);
186014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESKSPGetParametersEW(SNES,PetscInt*,PetscReal*,PetscReal*,PetscReal*,PetscReal*,PetscReal*,PetscReal*);
187eafb4bcbSBarry Smith 
188014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMonitorLGCreate(const char[],const char[],int,int,int,int,PetscDrawLG*);
1894619e776SBarry Smith PETSC_EXTERN PetscErrorCode SNESMonitorLGResidualNorm(SNES,PetscInt,PetscReal,void*);
190014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMonitorLGDestroy(PetscDrawLG*);
191014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMonitorLGRange(SNES,PetscInt,PetscReal,void*);
192eafb4bcbSBarry Smith 
193014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetApplicationContext(SNES,void *);
194014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetApplicationContext(SNES,void *);
195014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetComputeApplicationContext(SNES,PetscErrorCode (*)(SNES,void**),PetscErrorCode (*)(void**));
196184914b5SBarry Smith 
197014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESPythonSetType(SNES,const char[]);
1981d6018f0SLisandro Dalcin 
199014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetFunctionDomainError(SNES);
200014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetFunctionDomainError(SNES, PetscBool *);
2016a388c36SPeter Brune 
202435da068SBarry Smith /*E
203435da068SBarry Smith     SNESConvergedReason - reason a SNES method was said to
204435da068SBarry Smith          have converged or diverged
205435da068SBarry Smith 
206435da068SBarry Smith    Level: beginner
207435da068SBarry Smith 
208f203c74bSBarry Smith    The two most common reasons for divergence are
209f203c74bSBarry Smith $   1) an incorrectly coded or computed Jacobian or
210f203c74bSBarry Smith $   2) failure or lack of convergence in the linear system (in this case we recommend
211f203c74bSBarry Smith $      testing with -pc_type lu to eliminate the linear solver as the cause of the problem).
212f203c74bSBarry Smith 
213f203c74bSBarry Smith    Diverged Reasons:
214f203c74bSBarry Smith .    SNES_DIVERGED_LOCAL_MIN - this can only occur when using the line-search variant of SNES.
215f203c74bSBarry Smith        The line search wants to minimize Q(alpha) = 1/2 || F(x + alpha s) ||^2_2  this occurs
216f203c74bSBarry Smith        at Q'(alpha) = s^T F'(x+alpha s)^T F(x+alpha s) = 0. If s is the Newton direction - F'(x)^(-1)F(x) then
217f203c74bSBarry Smith        you get Q'(alpha) = -F(x)^T F'(x)^(-1)^T F'(x+alpha s)F(x+alpha s); when alpha = 0
218f203c74bSBarry Smith        Q'(0) = - ||F(x)||^2_2 which is always NEGATIVE if F'(x) is invertible. This means the Newton
219f203c74bSBarry Smith        direction is a descent direction and the line search should succeed if alpha is small enough.
220f203c74bSBarry Smith 
221f203c74bSBarry Smith        If F'(x) is NOT invertible AND F'(x)^T F(x) = 0 then Q'(0) = 0 and the Newton direction
222f203c74bSBarry Smith        is NOT a descent direction so the line search will fail. All one can do at this point
223f203c74bSBarry Smith        is change the initial guess and try again.
224f203c74bSBarry Smith 
225f203c74bSBarry Smith        An alternative explanation: Newton's method can be regarded as replacing the function with
226f203c74bSBarry Smith        its linear approximation and minimizing the 2-norm of that. That is F(x+s) approx F(x) + F'(x)s
227f203c74bSBarry Smith        so we minimize || F(x) + F'(x) s ||^2_2; do this using Least Squares. If F'(x) is invertible then
228f203c74bSBarry Smith        s = - F'(x)^(-1)F(x) otherwise F'(x)^T F'(x) s = -F'(x)^T F(x). If F'(x)^T F(x) is NOT zero then there
229f203c74bSBarry Smith        exists a nontrival (that is F'(x)s != 0) solution to the equation and this direction is
230f203c74bSBarry Smith        s = - [F'(x)^T F'(x)]^(-1) F'(x)^T F(x) so Q'(0) = - F(x)^T F'(x) [F'(x)^T F'(x)]^(-T) F'(x)^T F(x)
231f203c74bSBarry Smith        = - (F'(x)^T F(x)) [F'(x)^T F'(x)]^(-T) (F'(x)^T F(x)). Since we are assuming (F'(x)^T F(x)) != 0
232f203c74bSBarry Smith        and F'(x)^T F'(x) has no negative eigenvalues Q'(0) < 0 so s is a descent direction and the line
233f203c74bSBarry Smith        search should succeed for small enough alpha.
234f203c74bSBarry Smith 
235f203c74bSBarry Smith        Note that this RARELY happens in practice. Far more likely the linear system is not being solved
236f203c74bSBarry Smith        (well enough?) or the Jacobian is wrong.
237f203c74bSBarry Smith 
2384d0a8057SBarry Smith    SNES_DIVERGED_MAX_IT means that the solver reached the maximum number of iterations without satisfying any
2394d0a8057SBarry Smith    convergence criteria. SNES_CONVERGED_ITS means that SNESSkipConverged() was chosen as the convergence test;
2404d0a8057SBarry Smith    thus the usual convergence criteria have not been checked and may or may not be satisfied.
241f203c74bSBarry Smith 
2424d0a8057SBarry Smith    Developer Notes: this must match finclude/petscsnes.h
2434d0a8057SBarry Smith 
2444d0a8057SBarry Smith        The string versions of these are in SNESConvergedReason, if you change any value here you must
2454d0a8057SBarry Smith      also adjust that array.
2465968eb51SBarry Smith 
24746a9e3ceSBarry Smith    Each reason has its own manual page.
24846a9e3ceSBarry Smith 
249435da068SBarry Smith .seealso: SNESSolve(), SNESGetConvergedReason(), KSPConvergedReason, SNESSetConvergenceTest()
250435da068SBarry Smith E*/
251184914b5SBarry Smith typedef enum {/* converged */
25201b82886SBarry Smith               SNES_CONVERGED_FNORM_ABS         =  2, /* ||F|| < atol */
25301b82886SBarry Smith               SNES_CONVERGED_FNORM_RELATIVE    =  3, /* ||F|| < rtol*||F_initial|| */
2545358d0d4SBarry Smith               SNES_CONVERGED_SNORM_RELATIVE    =  4, /* Newton computed step size small; || delta x || < stol || x ||*/
2553f149594SLisandro Dalcin               SNES_CONVERGED_ITS               =  5, /* maximum iterations reached */
256184914b5SBarry Smith               SNES_CONVERGED_TR_DELTA          =  7,
257184914b5SBarry Smith               /* diverged */
25846a9e3ceSBarry Smith               SNES_DIVERGED_FUNCTION_DOMAIN     = -1, /* the new x location passed the function is not in the domain of F */
259184914b5SBarry Smith               SNES_DIVERGED_FUNCTION_COUNT      = -2,
26046a9e3ceSBarry Smith               SNES_DIVERGED_LINEAR_SOLVE        = -3, /* the linear solve failed */
261184914b5SBarry Smith               SNES_DIVERGED_FNORM_NAN           = -4,
262184914b5SBarry Smith               SNES_DIVERGED_MAX_IT              = -5,
263647a2e1fSBarry Smith               SNES_DIVERGED_LINE_SEARCH         = -6, /* the line search failed */
2641e633543SBarry Smith               SNES_DIVERGED_INNER               = -7, /* inner solve failed */
26558c775ebSBarry Smith               SNES_DIVERGED_LOCAL_MIN           = -8, /* || J^T b || is small, implies converged to local minimum of F() */
266184914b5SBarry Smith               SNES_CONVERGED_ITERATING          =  0} SNESConvergedReason;
267014dd563SJed Brown PETSC_EXTERN const char *const*SNESConvergedReasons;
268184914b5SBarry Smith 
269c838673bSBarry Smith /*MC
270c838673bSBarry Smith      SNES_CONVERGED_FNORM_ABS - 2-norm(F) <= abstol
271c838673bSBarry Smith 
272c838673bSBarry Smith    Level: beginner
273c838673bSBarry Smith 
274c838673bSBarry Smith .seealso:  SNESSolve(), SNESGetConvergedReason(), SNESConvergedReason, SNESSetTolerances()
275c838673bSBarry Smith 
276c838673bSBarry Smith M*/
277c838673bSBarry Smith 
278c838673bSBarry Smith /*MC
279c838673bSBarry Smith      SNES_CONVERGED_FNORM_RELATIVE - 2-norm(F) <= rtol*2-norm(F(x_0)) where x_0 is the initial guess
280c838673bSBarry Smith 
281c838673bSBarry Smith    Level: beginner
282c838673bSBarry Smith 
283c838673bSBarry Smith .seealso:  SNESSolve(), SNESGetConvergedReason(), SNESConvergedReason, SNESSetTolerances()
284c838673bSBarry Smith 
285c838673bSBarry Smith M*/
286c838673bSBarry Smith 
287c838673bSBarry Smith /*MC
288c60f73f4SPeter Brune      SNES_CONVERGED_SNORM_RELATIVE - The 2-norm of the last step <= stol * 2-norm(x) where x is the current
28946a9e3ceSBarry Smith           solution and stol is the 4th argument to SNESSetTolerances()
290c838673bSBarry Smith 
291ae9be289SBarry Smith      Options Database Keys:
292ae9be289SBarry Smith       -snes_stol <stol> - the step tolerance
293ae9be289SBarry Smith 
294c838673bSBarry Smith    Level: beginner
295c838673bSBarry Smith 
296c838673bSBarry Smith .seealso:  SNESSolve(), SNESGetConvergedReason(), SNESConvergedReason, SNESSetTolerances()
297c838673bSBarry Smith 
298c838673bSBarry Smith M*/
299c838673bSBarry Smith 
300c838673bSBarry Smith /*MC
301c838673bSBarry Smith      SNES_DIVERGED_FUNCTION_COUNT - The user provided function has been called more times then the final
302c838673bSBarry Smith          argument to SNESSetTolerances()
303c838673bSBarry Smith 
304c838673bSBarry Smith    Level: beginner
305c838673bSBarry Smith 
306c838673bSBarry Smith .seealso:  SNESSolve(), SNESGetConvergedReason(), SNESConvergedReason, SNESSetTolerances()
307c838673bSBarry Smith 
308c838673bSBarry Smith M*/
309c838673bSBarry Smith 
310c838673bSBarry Smith /*MC
311c838673bSBarry Smith      SNES_DIVERGED_FNORM_NAN - the 2-norm of the current function evaluation is not-a-number (NaN), this
312c838673bSBarry Smith       is usually caused by a division of 0 by 0.
313c838673bSBarry Smith 
314c838673bSBarry Smith    Level: beginner
315c838673bSBarry Smith 
316c838673bSBarry Smith .seealso:  SNESSolve(), SNESGetConvergedReason(), SNESConvergedReason, SNESSetTolerances()
317c838673bSBarry Smith 
318c838673bSBarry Smith M*/
319c838673bSBarry Smith 
320c838673bSBarry Smith /*MC
321c838673bSBarry Smith      SNES_DIVERGED_MAX_IT - SNESSolve() has reached the maximum number of iterations requested
322c838673bSBarry Smith 
323c838673bSBarry Smith    Level: beginner
324c838673bSBarry Smith 
325c838673bSBarry Smith .seealso:  SNESSolve(), SNESGetConvergedReason(), SNESConvergedReason, SNESSetTolerances()
326c838673bSBarry Smith 
327c838673bSBarry Smith M*/
328c838673bSBarry Smith 
329c838673bSBarry Smith /*MC
33004d7464bSBarry Smith      SNES_DIVERGED_LINE_SEARCH - The line search has failed. This only occurs for a SNES solvers that use a line search
331c838673bSBarry Smith 
332c838673bSBarry Smith    Level: beginner
333c838673bSBarry Smith 
33404d7464bSBarry Smith .seealso:  SNESSolve(), SNESGetConvergedReason(), SNESConvergedReason, SNESSetTolerances(), SNESLineSearch
335c838673bSBarry Smith 
336c838673bSBarry Smith M*/
337c838673bSBarry Smith 
338c838673bSBarry Smith /*MC
33946a9e3ceSBarry Smith      SNES_DIVERGED_LOCAL_MIN - the algorithm seems to have stagnated at a local minimum that is not zero.
34046a9e3ceSBarry Smith         See the manual page for SNESConvergedReason for more details
341c838673bSBarry Smith 
342c838673bSBarry Smith    Level: beginner
343c838673bSBarry Smith 
344c838673bSBarry Smith .seealso:  SNESSolve(), SNESGetConvergedReason(), SNESConvergedReason, SNESSetTolerances()
345c838673bSBarry Smith 
346c838673bSBarry Smith M*/
347c838673bSBarry Smith 
348c838673bSBarry Smith /*MC
349c838673bSBarry Smith      SNES_CONERGED_ITERATING - this only occurs if SNESGetConvergedReason() is called during the SNESSolve()
350c838673bSBarry Smith 
351c838673bSBarry Smith    Level: beginner
352c838673bSBarry Smith 
353c838673bSBarry Smith .seealso:  SNESSolve(), SNESGetConvergedReason(), SNESConvergedReason, SNESSetTolerances()
354c838673bSBarry Smith 
355c838673bSBarry Smith M*/
356c838673bSBarry Smith 
357014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetConvergenceTest(SNES,PetscErrorCode (*)(SNES,PetscInt,PetscReal,PetscReal,PetscReal,SNESConvergedReason*,void*),void*,PetscErrorCode (*)(void*));
358014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESDefaultConverged(SNES,PetscInt,PetscReal,PetscReal,PetscReal,SNESConvergedReason*,void*);
359014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSkipConverged(SNES,PetscInt,PetscReal,PetscReal,PetscReal,SNESConvergedReason*,void*);
360014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetConvergedReason(SNES,SNESConvergedReason*);
361ddbbdb52SLois Curfman McInnes 
362014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESDMMeshComputeFunction(SNES,Vec,Vec,void*);
363014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESDMMeshComputeJacobian(SNES,Vec,Mat*,Mat*,MatStructure*,void*);
36411f088b5SMatthew G Knepley 
365b67197daSBarry Smith /* --------- Solving systems of nonlinear equations --------------- */
366bf388a1fSBarry Smith PETSC_EXTERN PetscErrorCode SNESSetFunction(SNES,Vec,PetscErrorCode (*SNESFunction)(SNES,Vec,Vec,void*),void*);
367bf388a1fSBarry Smith PETSC_EXTERN PetscErrorCode SNESGetFunction(SNES,Vec*,PetscErrorCode (**SNESFunction)(SNES,Vec,Vec,void*),void**);
368014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESComputeFunction(SNES,Vec,Vec);
369bf388a1fSBarry Smith PETSC_EXTERN PetscErrorCode SNESSetJacobian(SNES,Mat,Mat,PetscErrorCode (*SNESJacobianFunction)(SNES,Vec,Mat*,Mat*,MatStructure*,void*),void*);
370bf388a1fSBarry Smith PETSC_EXTERN PetscErrorCode SNESGetJacobian(SNES,Mat*,Mat*,PetscErrorCode (**SNESJacobianFunction)(SNES,Vec,Mat*,Mat*,MatStructure*,void*),void**);
37197584545SPeter Brune PETSC_EXTERN PetscErrorCode SNESDefaultObjectiveComputeFunctionFD(SNES,Vec,Vec,void*);
372014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESDefaultComputeJacobian(SNES,Vec,Mat*,Mat*,MatStructure*,void*);
373014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESDefaultComputeJacobianColor(SNES,Vec,Mat*,Mat*,MatStructure*,void*);
374014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetComputeInitialGuess(SNES,PetscErrorCode (*)(SNES,Vec,void*),void*);
375bf388a1fSBarry Smith PETSC_EXTERN PetscErrorCode SNESSetPicard(SNES,Vec,PetscErrorCode (*SNESFunction)(SNES,Vec,Vec,void*),Mat,Mat,PetscErrorCode (*SNESJacobianFunction)(SNES,Vec,Mat*,Mat*,MatStructure*,void*),void*);
376bf388a1fSBarry Smith PETSC_EXTERN PetscErrorCode SNESGetPicard(SNES,Vec*,PetscErrorCode (**SNESFunction)(SNES,Vec,Vec,void*),Mat*,Mat*,PetscErrorCode (**SNESJacobianFunction)(SNES,Vec,Mat*,Mat*,MatStructure*,void*),void**);
377014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetInitialFunction(SNES,Vec);
378014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetInitialFunctionNorm(SNES,PetscReal);
37917bae607SBarry Smith 
380075cc632SBarry Smith PETSC_EXTERN PetscErrorCode SNESSetObjective(SNES,PetscErrorCode (*SNESObjectiveFunction)(SNES,Vec,PetscReal *,void*),void*);
381075cc632SBarry Smith PETSC_EXTERN PetscErrorCode SNESGetObjective(SNES,PetscErrorCode (**SNESObjectiveFunction)(SNES,Vec,PetscReal *,void*),void**);
3822a4ee8f2SPeter Brune PETSC_EXTERN PetscErrorCode SNESComputeObjective(SNES,Vec,PetscReal *);
3832a4ee8f2SPeter Brune 
384534ebe21SPeter Brune /*E
385534ebe21SPeter Brune     SNESNormType - Norm that is passed in the Krylov convergence
386534ebe21SPeter Brune        test routines.
387534ebe21SPeter Brune 
388534ebe21SPeter Brune    Level: advanced
389534ebe21SPeter Brune 
390534ebe21SPeter Brune    Support for these is highly dependent on the solver.
391534ebe21SPeter Brune 
392534ebe21SPeter Brune    Notes:
393534ebe21SPeter Brune    This is primarily used to turn off extra norm and function computation
394534ebe21SPeter Brune    when the solvers are composed.
395534ebe21SPeter Brune 
396534ebe21SPeter Brune .seealso: SNESSolve(), SNESGetConvergedReason(), KSPSetNormType(),
397534ebe21SPeter Brune           KSPSetConvergenceTest(), KSPSetPCSide()
398534ebe21SPeter Brune E*/
399534ebe21SPeter Brune 
400534ebe21SPeter Brune typedef enum {SNES_NORM_DEFAULT            = -1,
401fdacfa88SPeter Brune               SNES_NORM_NONE               =  0,
402fdacfa88SPeter Brune               SNES_NORM_FUNCTION           =  1,
403fdacfa88SPeter Brune               SNES_NORM_INITIAL_ONLY       =  2,
404fdacfa88SPeter Brune               SNES_NORM_FINAL_ONLY         =  3,
405fdacfa88SPeter Brune               SNES_NORM_INITIAL_FINAL_ONLY =  4} SNESNormType;
406014dd563SJed Brown PETSC_EXTERN const char *const*const SNESNormTypes;
407534ebe21SPeter Brune /*MC
408fdacfa88SPeter Brune     SNES_NORM_NONE - Don't compute function and its L2 norm.
409534ebe21SPeter Brune 
410534ebe21SPeter Brune    Level: advanced
411534ebe21SPeter Brune 
412534ebe21SPeter Brune     Notes:
413534ebe21SPeter Brune     This is most useful for stationary solvers with a fixed number of iterations used as smoothers.
414534ebe21SPeter Brune 
415534ebe21SPeter Brune .seealso: SNESNormType, SNESSetNormType(), SNES_NORM_DEFAULT
416534ebe21SPeter Brune M*/
417534ebe21SPeter Brune 
418fdacfa88SPeter Brune /*MC
419fdacfa88SPeter Brune     SNES_NORM_FUNCTION - Compute the function and its L2 norm at each iteration.
420534ebe21SPeter Brune 
421fdacfa88SPeter Brune    Level: advanced
422fdacfa88SPeter Brune 
423fdacfa88SPeter Brune     Notes:
424fdacfa88SPeter Brune     Most solvers will use this no matter what norm type is passed to them.
425fdacfa88SPeter Brune 
426fdacfa88SPeter Brune .seealso: SNESNormType, SNESSetNormType(), SNES_NORM_NONE
427fdacfa88SPeter Brune M*/
428534ebe21SPeter Brune 
429534ebe21SPeter Brune /*MC
430534ebe21SPeter Brune     SNES_NORM_INITIAL_ONLY - Compute the function and its L2 at iteration 0, but do not update it.
431534ebe21SPeter Brune 
432534ebe21SPeter Brune    Level: advanced
433534ebe21SPeter Brune 
434534ebe21SPeter Brune    Notes:
435534ebe21SPeter Brune    This method is useful in composed methods, when a true solution might actually be found before SNESSolve() is called.
436534ebe21SPeter Brune    This option enables the solve to abort on the zeroth iteration if this is the case.
437534ebe21SPeter Brune 
438534ebe21SPeter Brune    For solvers that require the computation of the L2 norm of the function as part of the method, this merely cancels
439534ebe21SPeter Brune    the norm computation at the last iteration (if possible).
440534ebe21SPeter Brune 
441534ebe21SPeter Brune .seealso: SNESNormType, SNESSetNormType(), SNES_NORM_FINAL_ONLY, SNES_NORM_INITIAL_FINAL_ONLY
442534ebe21SPeter Brune M*/
443534ebe21SPeter Brune 
444534ebe21SPeter Brune /*MC
445534ebe21SPeter Brune     SNES_NORM_FINAL_ONLY - Compute the function and its L2 norm on only the final iteration.
446534ebe21SPeter Brune 
447534ebe21SPeter Brune    Level: advanced
448534ebe21SPeter Brune 
449534ebe21SPeter Brune    Notes:
450534ebe21SPeter Brune    For solvers that require the computation of the L2 norm of the function as part of the method, behaves
451534ebe21SPeter Brune    exactly as SNES_NORM_DEFAULT.  This method is useful when the function is gotten after SNESSolve and
452534ebe21SPeter Brune    used in subsequent computation for methods that do not need the norm computed during the rest of the
453534ebe21SPeter Brune    solution procedure.
454534ebe21SPeter Brune 
455534ebe21SPeter Brune .seealso: SNESNormType, SNESSetNormType(), SNES_NORM_INITIAL_ONLY, SNES_NORM_INITIAL_FINAL_ONLY
456534ebe21SPeter Brune M*/
457534ebe21SPeter Brune 
458534ebe21SPeter Brune /*MC
459534ebe21SPeter Brune     SNES_NORM_INITIAL_FINAL_ONLY - Compute the function and its L2 norm on only the initial and final iterations.
460534ebe21SPeter Brune 
461534ebe21SPeter Brune    Level: advanced
462534ebe21SPeter Brune 
463534ebe21SPeter Brune    Notes:
464534ebe21SPeter Brune    This method combines the benefits of SNES_NORM_INITIAL_ONLY and SNES_NORM_FINAL_ONLY.
465534ebe21SPeter Brune 
466534ebe21SPeter Brune .seealso: SNESNormType, SNESSetNormType(), SNES_NORM_SNES_NORM_INITIAL_ONLY, SNES_NORM_FINAL_ONLY
467534ebe21SPeter Brune M*/
468534ebe21SPeter Brune 
469534ebe21SPeter Brune 
470014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetNormType(SNES,SNESNormType);
471014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetNormType(SNES,SNESNormType*);
472534ebe21SPeter Brune 
473bf388a1fSBarry Smith PETSC_EXTERN PetscErrorCode SNESSetGS(SNES,PetscErrorCode (*SNESGSFunction)(SNES,Vec,Vec,void*),void*);
474bf388a1fSBarry Smith PETSC_EXTERN PetscErrorCode SNESGetGS(SNES,PetscErrorCode (**SNESGSFunction)(SNES,Vec,Vec,void*),void**);
475014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetUseGS(SNES,PetscBool);
476014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetUseGS(SNES,PetscBool *);
477*b6266c6eSPeter Brune PETSC_EXTERN PetscErrorCode SNESComputeGS(SNES,Vec,Vec);
478*b6266c6eSPeter Brune 
4796cd56b8bSPeter Brune PETSC_EXTERN PetscErrorCode SNESGSSetSweeps(SNES,PetscInt);
4806cd56b8bSPeter Brune PETSC_EXTERN PetscErrorCode SNESGSGetSweeps(SNES,PetscInt *);
481*b6266c6eSPeter Brune PETSC_EXTERN PetscErrorCode SNESGSSetTolerances(SNES,PetscReal,PetscReal,PetscReal,PetscInt);
482*b6266c6eSPeter Brune PETSC_EXTERN PetscErrorCode SNESGSGetTolerances(SNES,PetscReal*,PetscReal*,PetscReal*,PetscInt*);
483646217ecSPeter Brune 
4845341784dSBarry Smith PETSC_EXTERN PetscErrorCode SNESUpdateCheckJacobian(SNES,PetscInt);
4855341784dSBarry Smith 
486014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESShellGetContext(SNES,void**);
487014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESShellSetContext(SNES,void*);
488014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESShellSetSolve(SNES,PetscErrorCode (*)(SNES,Vec));
489c5ae4b9aSBarry Smith 
490872b6db9SPeter Brune /* --------- Routines specifically for line search methods --------------- */
491872b6db9SPeter Brune 
492f1c6b773SPeter Brune typedef struct _p_LineSearch* SNESLineSearch;
4939e764e56SPeter Brune 
494cd7522eaSPeter Brune /*S
495cd7522eaSPeter Brune      SNESLineSearch - Abstract PETSc object that manages line-search operations
496cd7522eaSPeter Brune 
497cd7522eaSPeter Brune    Level: beginner
498cd7522eaSPeter Brune 
499cd7522eaSPeter Brune   Concepts: nonlinear solvers, line search
500cd7522eaSPeter Brune 
501cd7522eaSPeter Brune .seealso:  SNESLineSearchCreate(), SNESLineSearchSetType(), SNES
502cd7522eaSPeter Brune S*/
503cd7522eaSPeter Brune 
504cd7522eaSPeter Brune /*J
505cd7522eaSPeter Brune     SNESLineSearchType - String with the name of a PETSc line search method
506cd7522eaSPeter Brune 
507cd7522eaSPeter Brune    Level: beginner
508cd7522eaSPeter Brune 
509cd7522eaSPeter Brune .seealso: SNESLineSearchSetType(), SNES
510cd7522eaSPeter Brune J*/
5119e764e56SPeter Brune 
51219fd82e9SBarry Smith typedef const char* SNESLineSearchType;
5131a4f838cSPeter Brune #define SNESLINESEARCHBT                 "bt"
5141a4f838cSPeter Brune #define SNESLINESEARCHBASIC              "basic"
5151a4f838cSPeter Brune #define SNESLINESEARCHL2                 "l2"
5161a4f838cSPeter Brune #define SNESLINESEARCHCP                 "cp"
5171a4f838cSPeter Brune #define SNESLINESEARCHSHELL              "shell"
5189e764e56SPeter Brune 
519140e18c1SBarry Smith PETSC_EXTERN PetscBool         SNESRegisterAllCalled;
520140e18c1SBarry Smith PETSC_EXTERN PetscFunctionList SNESList;
521014dd563SJed Brown PETSC_EXTERN PetscClassId      SNESLINESEARCH_CLASSID;
522014dd563SJed Brown PETSC_EXTERN PetscBool         SNESLineSearchRegisterAllCalled;
523140e18c1SBarry Smith PETSC_EXTERN PetscFunctionList SNESLineSearchList;
524014dd563SJed Brown PETSC_EXTERN PetscLogEvent     SNESLineSearch_Apply;
5259e764e56SPeter Brune 
526b000cd8dSPeter Brune #define SNES_LINESEARCH_ORDER_LINEAR    1
527b000cd8dSPeter Brune #define SNES_LINESEARCH_ORDER_QUADRATIC 2
528b000cd8dSPeter Brune #define SNES_LINESEARCH_ORDER_CUBIC     3
52959405d5eSPeter Brune 
530638cfed1SJed Brown PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*SNESLineSearchVIProjectFunc)(SNES,Vec);
531638cfed1SJed Brown PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*SNESLineSearchVINormFunc)(SNES,Vec,Vec,PetscReal *);
532638cfed1SJed Brown PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*SNESLineSearchApplyFunc)(SNESLineSearch);
533638cfed1SJed Brown PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*SNESLineSearchUserFunc)(SNESLineSearch, void *);
5349e764e56SPeter Brune 
535014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchCreate(MPI_Comm, SNESLineSearch*);
536014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchReset(SNESLineSearch);
537014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchView(SNESLineSearch,PetscViewer);
538014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchDestroy(SNESLineSearch *);
53919fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode SNESLineSearchSetType(SNESLineSearch, SNESLineSearchType);
540014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchSetFromOptions(SNESLineSearch);
541014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchSetUp(SNESLineSearch);
542014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchApply(SNESLineSearch, Vec, Vec, PetscReal *, Vec);
543014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchPreCheck(SNESLineSearch,Vec,Vec,PetscBool *);
544014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchPostCheck(SNESLineSearch,Vec,Vec,Vec,PetscBool *,PetscBool *);
545014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchGetWork(SNESLineSearch, PetscInt);
5469e764e56SPeter Brune 
5479bd66eb0SPeter Brune /* set the functions for precheck and postcheck */
54886d74e61SPeter Brune 
5496b2b7091SBarry Smith PETSC_EXTERN PetscErrorCode SNESLineSearchSetPreCheck(SNESLineSearch, PetscErrorCode (*SNESLineSearchPreCheckFunction)(SNESLineSearch,Vec,Vec,PetscBool*,void*), void *ctx);
5506b2b7091SBarry Smith PETSC_EXTERN PetscErrorCode SNESLineSearchSetPostCheck(SNESLineSearch, PetscErrorCode (*SNESLineSearchPostCheckFunction)(SNESLineSearch,Vec,Vec,Vec,PetscBool *,PetscBool *,void*), void *ctx);
5519e764e56SPeter Brune 
5526b2b7091SBarry Smith PETSC_EXTERN PetscErrorCode SNESLineSearchGetPreCheck(SNESLineSearch, PetscErrorCode (**SNESLineSearchPreCheckFunction)(SNESLineSearch,Vec,Vec,PetscBool*,void*), void **ctx);
5536b2b7091SBarry Smith PETSC_EXTERN PetscErrorCode SNESLineSearchGetPostCheck(SNESLineSearch, PetscErrorCode (**SNESLineSearchPostCheckFunction)(SNESLineSearch,Vec,Vec,Vec,PetscBool *,PetscBool *,void*), void **ctx);
5549e764e56SPeter Brune 
5559bd66eb0SPeter Brune /* set the functions for VI-specific line search operations */
5569bd66eb0SPeter Brune 
557014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchSetVIFunctions(SNESLineSearch, SNESLineSearchVIProjectFunc, SNESLineSearchVINormFunc);
558014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchGetVIFunctions(SNESLineSearch, SNESLineSearchVIProjectFunc*, SNESLineSearchVINormFunc*);
5599bd66eb0SPeter Brune 
5609e764e56SPeter Brune /* pointers to the associated SNES in order to be able to get the function evaluation out */
561014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchSetSNES(SNESLineSearch,SNES);
562014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchGetSNES(SNESLineSearch,SNES*);
5639e764e56SPeter Brune 
5649e764e56SPeter Brune /* set and get the parameters and vectors */
565014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchGetTolerances(SNESLineSearch,PetscReal*,PetscReal*,PetscReal*,PetscReal*,PetscReal*,PetscInt*);
566014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchSetTolerances(SNESLineSearch,PetscReal,PetscReal,PetscReal,PetscReal,PetscReal,PetscInt);
5679e764e56SPeter Brune 
568014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchPreCheckPicard(SNESLineSearch,Vec,Vec,PetscBool*,void*);
56986d74e61SPeter Brune 
570014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchGetLambda(SNESLineSearch,PetscReal*);
571014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchSetLambda(SNESLineSearch,PetscReal);
5729e764e56SPeter Brune 
573014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchGetDamping(SNESLineSearch,PetscReal*);
574014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchSetDamping(SNESLineSearch,PetscReal);
5759e764e56SPeter Brune 
576014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchGetOrder(SNESLineSearch,PetscInt *order);
577014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchSetOrder(SNESLineSearch,PetscInt order);
57859405d5eSPeter Brune 
579014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchGetSuccess(SNESLineSearch, PetscBool*);
580014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchSetSuccess(SNESLineSearch, PetscBool);
5819e764e56SPeter Brune 
582014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchGetVecs(SNESLineSearch,Vec*,Vec*,Vec*,Vec*,Vec*);
583014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchSetVecs(SNESLineSearch,Vec,Vec,Vec,Vec,Vec);
5849e764e56SPeter Brune 
585014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchGetNorms(SNESLineSearch, PetscReal *, PetscReal *, PetscReal *);
586014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchSetNorms(SNESLineSearch, PetscReal, PetscReal, PetscReal);
587014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchComputeNorms(SNESLineSearch);
588014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchSetComputeNorms(SNESLineSearch, PetscBool);
5899e764e56SPeter Brune 
590014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchSetMonitor(SNESLineSearch, PetscBool);
591014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchGetMonitor(SNESLineSearch, PetscViewer*);
5929e764e56SPeter Brune 
593014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchAppendOptionsPrefix(SNESLineSearch, const char prefix[]);
594014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchGetOptionsPrefix(SNESLineSearch, const char *prefix[]);
5959e764e56SPeter Brune 
5969e764e56SPeter Brune 
5979e764e56SPeter Brune /* Shell interface functions */
598014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchShellSetUserFunc(SNESLineSearch,SNESLineSearchUserFunc,void*);
599014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchShellGetUserFunc(SNESLineSearch,SNESLineSearchUserFunc*,void**);
6009e764e56SPeter Brune 
6012f4102e2SPeter Brune /* BT interface functions */
602014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchBTSetAlpha(SNESLineSearch, PetscReal);
603014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchBTGetAlpha(SNESLineSearch, PetscReal*);
6042f4102e2SPeter Brune 
6059e764e56SPeter Brune /*register line search types */
606014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchRegister(const char[],const char[],const char[],PetscErrorCode(*)(SNESLineSearch));
607014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchRegisterAll(const char path[]);
608014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESLineSearchRegisterDestroy(void);
6099e764e56SPeter Brune 
6109e764e56SPeter Brune #if defined(PETSC_USE_DYNAMIC_LIBRARIES)
611f1c6b773SPeter Brune #define SNESLineSearchRegisterDynamic(a,b,c,d) SNESLineSearchRegister(a,b,c,0)
6129e764e56SPeter Brune #else
613f1c6b773SPeter Brune #define SNESLineSearchRegisterDynamic(a,b,c,d) SNESLineSearchRegister(a,b,c,d)
6149e764e56SPeter Brune #endif
6159e764e56SPeter Brune 
616720c9a41SShri Abhyankar /* Routines for VI solver */
617014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESVISetVariableBounds(SNES,Vec,Vec);
618014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESVISetComputeVariableBounds(SNES, PetscErrorCode (*)(SNES,Vec,Vec));
619014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESVIGetInactiveSet(SNES,IS*);
620014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESVIGetActiveSetIS(SNES,Vec,Vec,IS*);
621014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESVIComputeInactiveSetFnorm(SNES,Vec,Vec,PetscReal*);
622014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESVISetRedundancyCheck(SNES,PetscErrorCode(*)(SNES,IS,IS*,void*),void*);
62301f0b76bSBarry Smith #define SNES_VI_INF   1.0e20
62401f0b76bSBarry Smith #define SNES_VI_NINF -1.0e20
625f5ea5bd2SShri Abhyankar 
626014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESTestLocalMin(SNES);
627da9b6338SBarry Smith 
628eef9c623SLois Curfman McInnes /* Should this routine be private? */
629014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESComputeJacobian(SNES,Vec,Mat*,Mat*,MatStructure*);
630ddbbdb52SLois Curfman McInnes 
631014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetDM(SNES,DM);
632014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetDM(SNES,DM*);
633014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetPC(SNES,SNES);
634014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetPC(SNES,SNES*);
635c40d0f55SPeter Brune PETSC_EXTERN PetscErrorCode SNESSetPCSide(SNES,PCSide);
636c40d0f55SPeter Brune PETSC_EXTERN PetscErrorCode SNESGetPCSide(SNES,PCSide*);
637014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetSNESLineSearch(SNES,SNESLineSearch);
638014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESGetSNESLineSearch(SNES,SNESLineSearch*);
639014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESRestrictHookAdd(SNES,PetscErrorCode (*)(SNES,SNES,void*),void*);
640014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESRestrictHooksRun(SNES,SNES);
6416c699258SBarry Smith 
642014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESSetUpMatrices(SNES);
643bf388a1fSBarry Smith PETSC_EXTERN PetscErrorCode DMSNESSetFunction(DM,PetscErrorCode(*SNESFunction)(SNES,Vec,Vec,void*),void*);
644bf388a1fSBarry Smith PETSC_EXTERN PetscErrorCode DMSNESGetFunction(DM,PetscErrorCode(**SNESSetFunction)(SNES,Vec,Vec,void*),void**);
645bf388a1fSBarry Smith PETSC_EXTERN PetscErrorCode DMSNESSetGS(DM,PetscErrorCode(*SNESGSFunction)(SNES,Vec,Vec,void*),void*);
646bf388a1fSBarry Smith PETSC_EXTERN PetscErrorCode DMSNESGetGS(DM,PetscErrorCode(**SNESGSFunction)(SNES,Vec,Vec,void*),void**);
647bf388a1fSBarry Smith PETSC_EXTERN PetscErrorCode DMSNESSetJacobian(DM,PetscErrorCode(*SNESJacobianFunction)(SNES,Vec,Mat*,Mat*,MatStructure*,void*),void*);
648bf388a1fSBarry Smith PETSC_EXTERN PetscErrorCode DMSNESGetJacobian(DM,PetscErrorCode(**SNESJacobianFunction)(SNES,Vec,Mat*,Mat*,MatStructure*,void*),void**);
649bf388a1fSBarry Smith PETSC_EXTERN PetscErrorCode DMSNESSetPicard(DM,PetscErrorCode(*SNESFunction)(SNES,Vec,Vec,void*),PetscErrorCode(*SNESJacobianFunction)(SNES,Vec,Mat*,Mat*,MatStructure*,void*),void*);
650bf388a1fSBarry Smith PETSC_EXTERN PetscErrorCode DMSNESGetPicard(DM,PetscErrorCode(**SNESFunction)(SNES,Vec,Vec,void*),PetscErrorCode(**SNESJacobianFunction)(SNES,Vec,Mat*,Mat*,MatStructure*,void*),void**);
651075cc632SBarry Smith PETSC_EXTERN PetscErrorCode DMSNESSetObjective(DM,PetscErrorCode (*SNESObjectiveFunction)(SNES,Vec,PetscReal *,void*),void*);
652075cc632SBarry Smith PETSC_EXTERN PetscErrorCode DMSNESGetObjective(DM,PetscErrorCode (**SNESObjectiveFunction)(SNES,Vec,PetscReal *,void*),void**);
6536cab3a1bSJed Brown 
654c9d099b5SPeter Brune PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*DMDASNESFunction)(DMDALocalInfo*,void*,void*,void*);
655c9d099b5SPeter Brune PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*DMDASNESJacobian)(DMDALocalInfo*,void*,Mat,Mat,MatStructure*,void*);
6562a4ee8f2SPeter Brune PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*DMDASNESObjective)(DMDALocalInfo*,void*,PetscReal*,void*);
657c9d099b5SPeter Brune 
658c9d099b5SPeter Brune PETSC_EXTERN PetscErrorCode DMDASNESSetFunctionLocal(DM,InsertMode,DMDASNESFunction,void*);
659c9d099b5SPeter Brune PETSC_EXTERN PetscErrorCode DMDASNESSetJacobianLocal(DM,DMDASNESJacobian,void*);
6602a4ee8f2SPeter Brune PETSC_EXTERN PetscErrorCode DMDASNESSetObjectiveLocal(DM,DMDASNESObjective,void*);
661dcad5f1cSBarry Smith PETSC_EXTERN PetscErrorCode DMDASNESSetPicardLocal(DM,InsertMode,PetscErrorCode (*)(DMDALocalInfo*,void*,void*,void*),PetscErrorCode (*)(DMDALocalInfo*,void*,Mat,Mat,MatStructure*,void*),void*);
6626cab3a1bSJed Brown 
663ff35dfedSBarry Smith PETSC_EXTERN PetscErrorCode DMSNESSetFunctionLocal(DM,PetscErrorCode (*)(DM,Vec,Vec,void*),void*);
664ff35dfedSBarry Smith PETSC_EXTERN PetscErrorCode DMSNESSetJacobianLocal(DM,PetscErrorCode (*)(DM,Vec,Mat,Mat,MatStructure*,void*),void*);
665ff35dfedSBarry Smith 
666b665c654SMatthew G Knepley /* Routines for Multiblock solver */
667014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMultiblockSetFields(SNES, const char [], PetscInt, const PetscInt *);
668014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMultiblockSetIS(SNES, const char [], IS);
669014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMultiblockSetBlockSize(SNES, PetscInt);
670014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMultiblockSetType(SNES, PCCompositeType);
671aeed3662SMatthew G Knepley 
67237e1895aSJed Brown /*J
67337e1895aSJed Brown     SNESMSType - String with the name of a PETSc SNESMS method.
67437e1895aSJed Brown 
67537e1895aSJed Brown    Level: intermediate
67637e1895aSJed Brown 
67737e1895aSJed Brown .seealso: SNESMSSetType(), SNES
67837e1895aSJed Brown J*/
67919fd82e9SBarry Smith typedef const char* SNESMSType;
68037e1895aSJed Brown #define SNESMSM62       "m62"
68137e1895aSJed Brown #define SNESMSEULER     "euler"
682a97cb6bcSJed Brown #define SNESMSJAMESON83 "jameson83"
683a97cb6bcSJed Brown #define SNESMSVLTP21    "vltp21"
684a97cb6bcSJed Brown #define SNESMSVLTP31    "vltp31"
685a97cb6bcSJed Brown #define SNESMSVLTP41    "vltp41"
686a97cb6bcSJed Brown #define SNESMSVLTP51    "vltp51"
687a97cb6bcSJed Brown #define SNESMSVLTP61    "vltp61"
68837e1895aSJed Brown 
68919fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode SNESMSRegister(SNESMSType,PetscInt,PetscInt,PetscReal,const PetscReal[],const PetscReal[],const PetscReal[]);
69019fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode SNESMSSetType(SNES,SNESMSType);
691014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMSFinalizePackage(void);
692014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMSInitializePackage(const char path[]);
693014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMSRegisterDestroy(void);
694014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESMSRegisterAll(void);
69537e1895aSJed Brown 
69613a62661SPeter Brune /* routines for NGMRES solver */
69713a62661SPeter Brune 
69813a62661SPeter Brune typedef enum {
69913a62661SPeter Brune   SNES_NGMRES_RESTART_NONE       = 0,
70013a62661SPeter Brune   SNES_NGMRES_RESTART_PERIODIC   = 1,
70113a62661SPeter Brune   SNES_NGMRES_RESTART_DIFFERENCE = 2} SNESNGMRESRestartType;
7026a6fc655SJed Brown PETSC_EXTERN const char *const SNESNGMRESRestartTypes[];
70313a62661SPeter Brune 
70413a62661SPeter Brune typedef enum {
70513a62661SPeter Brune   SNES_NGMRES_SELECT_NONE       = 0,
70613a62661SPeter Brune   SNES_NGMRES_SELECT_DIFFERENCE = 1,
70713a62661SPeter Brune   SNES_NGMRES_SELECT_LINESEARCH = 2} SNESNGMRESSelectType;
7086a6fc655SJed Brown PETSC_EXTERN const char *const SNESNGMRESSelectTypes[];
70913a62661SPeter Brune 
710014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESNGMRESSetRestartType(SNES, SNESNGMRESRestartType);
711014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESNGMRESSetSelectType(SNES, SNESNGMRESSelectType);
71213a62661SPeter Brune 
7130a844d1aSPeter Brune /* routines for NCG solver */
7140a844d1aSPeter Brune 
7150a844d1aSPeter Brune typedef enum {
7160de8b71eSPeter Brune   SNES_NCG_FR    = 0,
7170de8b71eSPeter Brune   SNES_NCG_PRP   = 1,
7180de8b71eSPeter Brune   SNES_NCG_HS    = 2,
7190de8b71eSPeter Brune   SNES_NCG_DY    = 3,
7200de8b71eSPeter Brune   SNES_NCG_CD    = 4} SNESNCGType;
7216a6fc655SJed Brown PETSC_EXTERN const char *const SNESNCGTypes[];
7220a844d1aSPeter Brune 
723014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESNCGSetType(SNES, SNESNCGType);
72413a62661SPeter Brune 
7250de8b71eSPeter Brune typedef enum {SNES_QN_SCALE_NONE       = 0,
7260de8b71eSPeter Brune               SNES_QN_SCALE_SHANNO     = 1,
7270de8b71eSPeter Brune               SNES_QN_SCALE_LINESEARCH = 2,
7280de8b71eSPeter Brune               SNES_QN_SCALE_JACOBIAN   = 3} SNESQNScaleType;
7296a6fc655SJed Brown PETSC_EXTERN const char *const SNESQNScaleTypes[];
7300de8b71eSPeter Brune typedef enum {SNES_QN_RESTART_NONE     = 0,
7310de8b71eSPeter Brune               SNES_QN_RESTART_POWELL   = 1,
7320de8b71eSPeter Brune               SNES_QN_RESTART_PERIODIC = 2} SNESQNRestartType;
7336a6fc655SJed Brown PETSC_EXTERN const char *const SNESQNRestartTypes[];
7340c777b0cSPeter Brune 
735014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESQNSetScaleType(SNES, SNESQNScaleType);
736014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESQNSetRestartType(SNES, SNESQNRestartType);
7370c777b0cSPeter Brune 
7380c777b0cSPeter Brune 
739ce3d82beSBarry Smith #endif
740