xref: /petsc/src/snes/interface/snes.c (revision fccf883b8d575dff35c78ade578d5b4ecfb79779)
1 
2 #include <petsc/private/snesimpl.h>      /*I "petscsnes.h"  I*/
3 #include <petscdmshell.h>
4 #include <petscdraw.h>
5 #include <petscds.h>
6 #include <petscconvest.h>
7 
8 PetscBool         SNESRegisterAllCalled = PETSC_FALSE;
9 PetscFunctionList SNESList              = NULL;
10 
11 /* Logging support */
12 PetscClassId  SNES_CLASSID, DMSNES_CLASSID;
13 PetscLogEvent SNES_Solve, SNES_FunctionEval, SNES_JacobianEval, SNES_NGSEval, SNES_NGSFuncEval, SNES_NPCSolve, SNES_ObjectiveEval;
14 
15 /*@
16    SNESSetErrorIfNotConverged - Causes SNESSolve() to generate an error if the solver has not converged.
17 
18    Logically Collective on SNES
19 
20    Input Parameters:
21 +  snes - iterative context obtained from SNESCreate()
22 -  flg - PETSC_TRUE indicates you want the error generated
23 
24    Options database keys:
25 .  -snes_error_if_not_converged : this takes an optional truth value (0/1/no/yes/true/false)
26 
27    Level: intermediate
28 
29    Notes:
30     Normally PETSc continues if a linear solver fails to converge, you can call SNESGetConvergedReason() after a SNESSolve()
31     to determine if it has converged.
32 
33 .keywords: SNES, set, initial guess, nonzero
34 
35 .seealso: SNESGetErrorIfNotConverged(), KSPGetErrorIfNotConverged(), KSPSetErrorIFNotConverged()
36 @*/
37 PetscErrorCode  SNESSetErrorIfNotConverged(SNES snes,PetscBool flg)
38 {
39   PetscFunctionBegin;
40   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
41   PetscValidLogicalCollectiveBool(snes,flg,2);
42   snes->errorifnotconverged = flg;
43   PetscFunctionReturn(0);
44 }
45 
46 /*@
47    SNESGetErrorIfNotConverged - Will SNESSolve() generate an error if the solver does not converge?
48 
49    Not Collective
50 
51    Input Parameter:
52 .  snes - iterative context obtained from SNESCreate()
53 
54    Output Parameter:
55 .  flag - PETSC_TRUE if it will generate an error, else PETSC_FALSE
56 
57    Level: intermediate
58 
59 .keywords: SNES, set, initial guess, nonzero
60 
61 .seealso:  SNESSetErrorIfNotConverged(), KSPGetErrorIfNotConverged(), KSPSetErrorIFNotConverged()
62 @*/
63 PetscErrorCode  SNESGetErrorIfNotConverged(SNES snes,PetscBool  *flag)
64 {
65   PetscFunctionBegin;
66   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
67   PetscValidPointer(flag,2);
68   *flag = snes->errorifnotconverged;
69   PetscFunctionReturn(0);
70 }
71 
72 /*@
73     SNESSetAlwaysComputesFinalResidual - does the SNES always compute the residual at the final solution?
74 
75    Logically Collective on SNES
76 
77     Input Parameters:
78 +   snes - the shell SNES
79 -   flg - is the residual computed?
80 
81    Level: advanced
82 
83 .seealso: SNESGetAlwaysComputesFinalResidual()
84 @*/
85 PetscErrorCode  SNESSetAlwaysComputesFinalResidual(SNES snes, PetscBool flg)
86 {
87   PetscFunctionBegin;
88   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
89   snes->alwayscomputesfinalresidual = flg;
90   PetscFunctionReturn(0);
91 }
92 
93 /*@
94     SNESGetAlwaysComputesFinalResidual - does the SNES always compute the residual at the final solution?
95 
96    Logically Collective on SNES
97 
98     Input Parameter:
99 .   snes - the shell SNES
100 
101     Output Parameter:
102 .   flg - is the residual computed?
103 
104    Level: advanced
105 
106 .seealso: SNESSetAlwaysComputesFinalResidual()
107 @*/
108 PetscErrorCode  SNESGetAlwaysComputesFinalResidual(SNES snes, PetscBool *flg)
109 {
110   PetscFunctionBegin;
111   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
112   *flg = snes->alwayscomputesfinalresidual;
113   PetscFunctionReturn(0);
114 }
115 
116 /*@
117    SNESSetFunctionDomainError - tells SNES that the input vector to your SNESFunction is not
118      in the functions domain. For example, negative pressure.
119 
120    Logically Collective on SNES
121 
122    Input Parameters:
123 .  snes - the SNES context
124 
125    Level: advanced
126 
127 .keywords: SNES, view
128 
129 .seealso: SNESCreate(), SNESSetFunction(), SNESFunction
130 @*/
131 PetscErrorCode  SNESSetFunctionDomainError(SNES snes)
132 {
133   PetscFunctionBegin;
134   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
135   if (snes->errorifnotconverged) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"User code indicates input vector is not in the function domain");
136   snes->domainerror = PETSC_TRUE;
137   PetscFunctionReturn(0);
138 }
139 
140 /*@
141    SNESGetFunctionDomainError - Gets the status of the domain error after a call to SNESComputeFunction;
142 
143    Logically Collective on SNES
144 
145    Input Parameters:
146 .  snes - the SNES context
147 
148    Output Parameters:
149 .  domainerror - Set to PETSC_TRUE if there's a domain error; PETSC_FALSE otherwise.
150 
151    Level: advanced
152 
153 .keywords: SNES, view
154 
155 .seealso: SNESSetFunctionDomainError(), SNESComputeFunction()
156 @*/
157 PetscErrorCode  SNESGetFunctionDomainError(SNES snes, PetscBool *domainerror)
158 {
159   PetscFunctionBegin;
160   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
161   PetscValidPointer(domainerror, 2);
162   *domainerror = snes->domainerror;
163   PetscFunctionReturn(0);
164 }
165 
166 /*@C
167   SNESLoad - Loads a SNES that has been stored in binary  with SNESView().
168 
169   Collective on PetscViewer
170 
171   Input Parameters:
172 + newdm - the newly loaded SNES, this needs to have been created with SNESCreate() or
173            some related function before a call to SNESLoad().
174 - viewer - binary file viewer, obtained from PetscViewerBinaryOpen()
175 
176    Level: intermediate
177 
178   Notes:
179    The type is determined by the data in the file, any type set into the SNES before this call is ignored.
180 
181   Notes for advanced users:
182   Most users should not need to know the details of the binary storage
183   format, since SNESLoad() and TSView() completely hide these details.
184   But for anyone who's interested, the standard binary matrix storage
185   format is
186 .vb
187      has not yet been determined
188 .ve
189 
190 .seealso: PetscViewerBinaryOpen(), SNESView(), MatLoad(), VecLoad()
191 @*/
192 PetscErrorCode  SNESLoad(SNES snes, PetscViewer viewer)
193 {
194   PetscErrorCode ierr;
195   PetscBool      isbinary;
196   PetscInt       classid;
197   char           type[256];
198   KSP            ksp;
199   DM             dm;
200   DMSNES         dmsnes;
201 
202   PetscFunctionBegin;
203   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
204   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2);
205   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr);
206   if (!isbinary) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Invalid viewer; open viewer with PetscViewerBinaryOpen()");
207 
208   ierr = PetscViewerBinaryRead(viewer,&classid,1,NULL,PETSC_INT);CHKERRQ(ierr);
209   if (classid != SNES_FILE_CLASSID) SETERRQ(PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_WRONG,"Not SNES next in file");
210   ierr = PetscViewerBinaryRead(viewer,type,256,NULL,PETSC_CHAR);CHKERRQ(ierr);
211   ierr = SNESSetType(snes, type);CHKERRQ(ierr);
212   if (snes->ops->load) {
213     ierr = (*snes->ops->load)(snes,viewer);CHKERRQ(ierr);
214   }
215   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
216   ierr = DMGetDMSNES(dm,&dmsnes);CHKERRQ(ierr);
217   ierr = DMSNESLoad(dmsnes,viewer);CHKERRQ(ierr);
218   ierr = SNESGetKSP(snes,&ksp);CHKERRQ(ierr);
219   ierr = KSPLoad(ksp,viewer);CHKERRQ(ierr);
220   PetscFunctionReturn(0);
221 }
222 
223 #include <petscdraw.h>
224 #if defined(PETSC_HAVE_SAWS)
225 #include <petscviewersaws.h>
226 #endif
227 /*@C
228    SNESView - Prints the SNES data structure.
229 
230    Collective on SNES
231 
232    Input Parameters:
233 +  SNES - the SNES context
234 -  viewer - visualization context
235 
236    Options Database Key:
237 .  -snes_view - Calls SNESView() at end of SNESSolve()
238 
239    Notes:
240    The available visualization contexts include
241 +     PETSC_VIEWER_STDOUT_SELF - standard output (default)
242 -     PETSC_VIEWER_STDOUT_WORLD - synchronized standard
243          output where only the first processor opens
244          the file.  All other processors send their
245          data to the first processor to print.
246 
247    The user can open an alternative visualization context with
248    PetscViewerASCIIOpen() - output to a specified file.
249 
250    Level: beginner
251 
252 .keywords: SNES, view
253 
254 .seealso: PetscViewerASCIIOpen()
255 @*/
256 PetscErrorCode  SNESView(SNES snes,PetscViewer viewer)
257 {
258   SNESKSPEW      *kctx;
259   PetscErrorCode ierr;
260   KSP            ksp;
261   SNESLineSearch linesearch;
262   PetscBool      iascii,isstring,isbinary,isdraw;
263   DMSNES         dmsnes;
264 #if defined(PETSC_HAVE_SAWS)
265   PetscBool      issaws;
266 #endif
267 
268   PetscFunctionBegin;
269   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
270   if (!viewer) {
271     ierr = PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject)snes),&viewer);CHKERRQ(ierr);
272   }
273   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2);
274   PetscCheckSameComm(snes,1,viewer,2);
275 
276   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&iascii);CHKERRQ(ierr);
277   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERSTRING,&isstring);CHKERRQ(ierr);
278   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr);
279   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
280 #if defined(PETSC_HAVE_SAWS)
281   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERSAWS,&issaws);CHKERRQ(ierr);
282 #endif
283   if (iascii) {
284     SNESNormSchedule normschedule;
285 
286     ierr = PetscObjectPrintClassNamePrefixType((PetscObject)snes,viewer);CHKERRQ(ierr);
287     if (!snes->setupcalled) {
288       ierr = PetscViewerASCIIPrintf(viewer,"  SNES has not been set up so information may be incomplete\n");CHKERRQ(ierr);
289     }
290     if (snes->ops->view) {
291       ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
292       ierr = (*snes->ops->view)(snes,viewer);CHKERRQ(ierr);
293       ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
294     }
295     ierr = PetscViewerASCIIPrintf(viewer,"  maximum iterations=%D, maximum function evaluations=%D\n",snes->max_its,snes->max_funcs);CHKERRQ(ierr);
296     ierr = PetscViewerASCIIPrintf(viewer,"  tolerances: relative=%g, absolute=%g, solution=%g\n",(double)snes->rtol,(double)snes->abstol,(double)snes->stol);CHKERRQ(ierr);
297     if (snes->usesksp) {
298       ierr = PetscViewerASCIIPrintf(viewer,"  total number of linear solver iterations=%D\n",snes->linear_its);CHKERRQ(ierr);
299     }
300     ierr = PetscViewerASCIIPrintf(viewer,"  total number of function evaluations=%D\n",snes->nfuncs);CHKERRQ(ierr);
301     ierr = SNESGetNormSchedule(snes, &normschedule);CHKERRQ(ierr);
302     if (normschedule > 0) {ierr = PetscViewerASCIIPrintf(viewer,"  norm schedule %s\n",SNESNormSchedules[normschedule]);CHKERRQ(ierr);}
303     if (snes->gridsequence) {
304       ierr = PetscViewerASCIIPrintf(viewer,"  total number of grid sequence refinements=%D\n",snes->gridsequence);CHKERRQ(ierr);
305     }
306     if (snes->ksp_ewconv) {
307       kctx = (SNESKSPEW*)snes->kspconvctx;
308       if (kctx) {
309         ierr = PetscViewerASCIIPrintf(viewer,"  Eisenstat-Walker computation of KSP relative tolerance (version %D)\n",kctx->version);CHKERRQ(ierr);
310         ierr = PetscViewerASCIIPrintf(viewer,"    rtol_0=%g, rtol_max=%g, threshold=%g\n",(double)kctx->rtol_0,(double)kctx->rtol_max,(double)kctx->threshold);CHKERRQ(ierr);
311         ierr = PetscViewerASCIIPrintf(viewer,"    gamma=%g, alpha=%g, alpha2=%g\n",(double)kctx->gamma,(double)kctx->alpha,(double)kctx->alpha2);CHKERRQ(ierr);
312       }
313     }
314     if (snes->lagpreconditioner == -1) {
315       ierr = PetscViewerASCIIPrintf(viewer,"  Preconditioned is never rebuilt\n");CHKERRQ(ierr);
316     } else if (snes->lagpreconditioner > 1) {
317       ierr = PetscViewerASCIIPrintf(viewer,"  Preconditioned is rebuilt every %D new Jacobians\n",snes->lagpreconditioner);CHKERRQ(ierr);
318     }
319     if (snes->lagjacobian == -1) {
320       ierr = PetscViewerASCIIPrintf(viewer,"  Jacobian is never rebuilt\n");CHKERRQ(ierr);
321     } else if (snes->lagjacobian > 1) {
322       ierr = PetscViewerASCIIPrintf(viewer,"  Jacobian is rebuilt every %D SNES iterations\n",snes->lagjacobian);CHKERRQ(ierr);
323     }
324   } else if (isstring) {
325     const char *type;
326     ierr = SNESGetType(snes,&type);CHKERRQ(ierr);
327     ierr = PetscViewerStringSPrintf(viewer," %-3.3s",type);CHKERRQ(ierr);
328   } else if (isbinary) {
329     PetscInt    classid = SNES_FILE_CLASSID;
330     MPI_Comm    comm;
331     PetscMPIInt rank;
332     char        type[256];
333 
334     ierr = PetscObjectGetComm((PetscObject)snes,&comm);CHKERRQ(ierr);
335     ierr = MPI_Comm_rank(comm,&rank);CHKERRQ(ierr);
336     if (!rank) {
337       ierr = PetscViewerBinaryWrite(viewer,&classid,1,PETSC_INT,PETSC_FALSE);CHKERRQ(ierr);
338       ierr = PetscStrncpy(type,((PetscObject)snes)->type_name,sizeof(type));CHKERRQ(ierr);
339       ierr = PetscViewerBinaryWrite(viewer,type,sizeof(type),PETSC_CHAR,PETSC_FALSE);CHKERRQ(ierr);
340     }
341     if (snes->ops->view) {
342       ierr = (*snes->ops->view)(snes,viewer);CHKERRQ(ierr);
343     }
344   } else if (isdraw) {
345     PetscDraw draw;
346     char      str[36];
347     PetscReal x,y,bottom,h;
348 
349     ierr   = PetscViewerDrawGetDraw(viewer,0,&draw);CHKERRQ(ierr);
350     ierr   = PetscDrawGetCurrentPoint(draw,&x,&y);CHKERRQ(ierr);
351     ierr   = PetscStrcpy(str,"SNES: ");CHKERRQ(ierr);
352     ierr   = PetscStrcat(str,((PetscObject)snes)->type_name);CHKERRQ(ierr);
353     ierr   = PetscDrawStringBoxed(draw,x,y,PETSC_DRAW_BLUE,PETSC_DRAW_BLACK,str,NULL,&h);CHKERRQ(ierr);
354     bottom = y - h;
355     ierr   = PetscDrawPushCurrentPoint(draw,x,bottom);CHKERRQ(ierr);
356     if (snes->ops->view) {
357       ierr = (*snes->ops->view)(snes,viewer);CHKERRQ(ierr);
358     }
359 #if defined(PETSC_HAVE_SAWS)
360   } else if (issaws) {
361     PetscMPIInt rank;
362     const char *name;
363 
364     ierr = PetscObjectGetName((PetscObject)snes,&name);CHKERRQ(ierr);
365     ierr = MPI_Comm_rank(PETSC_COMM_WORLD,&rank);CHKERRQ(ierr);
366     if (!((PetscObject)snes)->amsmem && !rank) {
367       char       dir[1024];
368 
369       ierr = PetscObjectViewSAWs((PetscObject)snes,viewer);CHKERRQ(ierr);
370       ierr = PetscSNPrintf(dir,1024,"/PETSc/Objects/%s/its",name);CHKERRQ(ierr);
371       PetscStackCallSAWs(SAWs_Register,(dir,&snes->iter,1,SAWs_READ,SAWs_INT));
372       if (!snes->conv_hist) {
373         ierr = SNESSetConvergenceHistory(snes,NULL,NULL,PETSC_DECIDE,PETSC_TRUE);CHKERRQ(ierr);
374       }
375       ierr = PetscSNPrintf(dir,1024,"/PETSc/Objects/%s/conv_hist",name);CHKERRQ(ierr);
376       PetscStackCallSAWs(SAWs_Register,(dir,snes->conv_hist,10,SAWs_READ,SAWs_DOUBLE));
377     }
378 #endif
379   }
380   if (snes->linesearch) {
381     ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
382     ierr = SNESGetLineSearch(snes, &linesearch);CHKERRQ(ierr);
383     ierr = SNESLineSearchView(linesearch, viewer);CHKERRQ(ierr);
384     ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
385   }
386   if (snes->npc && snes->usesnpc) {
387     ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
388     ierr = SNESView(snes->npc, viewer);CHKERRQ(ierr);
389     ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
390   }
391   ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
392   ierr = DMGetDMSNES(snes->dm,&dmsnes);CHKERRQ(ierr);
393   ierr = DMSNESView(dmsnes, viewer);CHKERRQ(ierr);
394   ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
395   if (snes->usesksp) {
396     ierr = SNESGetKSP(snes,&ksp);CHKERRQ(ierr);
397     ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
398     ierr = KSPView(ksp,viewer);CHKERRQ(ierr);
399     ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
400   }
401   if (isdraw) {
402     PetscDraw draw;
403     ierr = PetscViewerDrawGetDraw(viewer,0,&draw);CHKERRQ(ierr);
404     ierr = PetscDrawPopCurrentPoint(draw);CHKERRQ(ierr);
405   }
406   PetscFunctionReturn(0);
407 }
408 
409 /*
410   We retain a list of functions that also take SNES command
411   line options. These are called at the end SNESSetFromOptions()
412 */
413 #define MAXSETFROMOPTIONS 5
414 static PetscInt numberofsetfromoptions;
415 static PetscErrorCode (*othersetfromoptions[MAXSETFROMOPTIONS])(SNES);
416 
417 /*@C
418   SNESAddOptionsChecker - Adds an additional function to check for SNES options.
419 
420   Not Collective
421 
422   Input Parameter:
423 . snescheck - function that checks for options
424 
425   Level: developer
426 
427 .seealso: SNESSetFromOptions()
428 @*/
429 PetscErrorCode  SNESAddOptionsChecker(PetscErrorCode (*snescheck)(SNES))
430 {
431   PetscFunctionBegin;
432   if (numberofsetfromoptions >= MAXSETFROMOPTIONS) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE, "Too many options checkers, only %D allowed", MAXSETFROMOPTIONS);
433   othersetfromoptions[numberofsetfromoptions++] = snescheck;
434   PetscFunctionReturn(0);
435 }
436 
437 extern PetscErrorCode  SNESDefaultMatrixFreeCreate2(SNES,Vec,Mat*);
438 
439 static PetscErrorCode SNESSetUpMatrixFree_Private(SNES snes, PetscBool hasOperator, PetscInt version)
440 {
441   Mat            J;
442   KSP            ksp;
443   PC             pc;
444   PetscBool      match;
445   PetscErrorCode ierr;
446   MatNullSpace   nullsp;
447 
448   PetscFunctionBegin;
449   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
450 
451   if (!snes->vec_func && (snes->jacobian || snes->jacobian_pre)) {
452     Mat A = snes->jacobian, B = snes->jacobian_pre;
453     ierr = MatCreateVecs(A ? A : B, NULL,&snes->vec_func);CHKERRQ(ierr);
454   }
455 
456   if (version == 1) {
457     ierr = MatCreateSNESMF(snes,&J);CHKERRQ(ierr);
458     ierr = MatMFFDSetOptionsPrefix(J,((PetscObject)snes)->prefix);CHKERRQ(ierr);
459     ierr = MatSetFromOptions(J);CHKERRQ(ierr);
460   } else if (version == 2) {
461     if (!snes->vec_func) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"SNESSetFunction() must be called first");
462 #if !defined(PETSC_USE_COMPLEX) && !defined(PETSC_USE_REAL_SINGLE) && !defined(PETSC_USE_REAL___FLOAT128) && !defined(PETSC_USE_REAL___FP16)
463     ierr = SNESDefaultMatrixFreeCreate2(snes,snes->vec_func,&J);CHKERRQ(ierr);
464 #else
465     SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP, "matrix-free operator rutines (version 2)");
466 #endif
467   } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE, "matrix-free operator rutines, only version 1 and 2");
468 
469   /* attach any user provided null space that was on Amat to the newly created matrix free matrix */
470   if (snes->jacobian) {
471     ierr = MatGetNullSpace(snes->jacobian,&nullsp);CHKERRQ(ierr);
472     if (nullsp) {
473       ierr = MatSetNullSpace(J,nullsp);CHKERRQ(ierr);
474     }
475   }
476 
477   ierr = PetscInfo1(snes,"Setting default matrix-free operator routines (version %D)\n", version);CHKERRQ(ierr);
478   if (hasOperator) {
479 
480     /* This version replaces the user provided Jacobian matrix with a
481        matrix-free version but still employs the user-provided preconditioner matrix. */
482     ierr = SNESSetJacobian(snes,J,0,0,0);CHKERRQ(ierr);
483   } else {
484     /* This version replaces both the user-provided Jacobian and the user-
485      provided preconditioner Jacobian with the default matrix free version. */
486     if ((snes->npcside== PC_LEFT) && snes->npc) {
487       if (!snes->jacobian){ierr = SNESSetJacobian(snes,J,0,0,0);CHKERRQ(ierr);}
488     } else {
489       ierr = SNESSetJacobian(snes,J,J,MatMFFDComputeJacobian,0);CHKERRQ(ierr);
490     }
491     /* Force no preconditioner */
492     ierr = SNESGetKSP(snes,&ksp);CHKERRQ(ierr);
493     ierr = KSPGetPC(ksp,&pc);CHKERRQ(ierr);
494     ierr = PetscObjectTypeCompare((PetscObject)pc,PCSHELL,&match);CHKERRQ(ierr);
495     if (!match) {
496       ierr = PetscInfo(snes,"Setting default matrix-free preconditioner routines\nThat is no preconditioner is being used\n");CHKERRQ(ierr);
497       ierr = PCSetType(pc,PCNONE);CHKERRQ(ierr);
498     }
499   }
500   ierr = MatDestroy(&J);CHKERRQ(ierr);
501   PetscFunctionReturn(0);
502 }
503 
504 static PetscErrorCode DMRestrictHook_SNESVecSol(DM dmfine,Mat Restrict,Vec Rscale,Mat Inject,DM dmcoarse,void *ctx)
505 {
506   SNES           snes = (SNES)ctx;
507   PetscErrorCode ierr;
508   Vec            Xfine,Xfine_named = NULL,Xcoarse;
509 
510   PetscFunctionBegin;
511   if (PetscLogPrintInfo) {
512     PetscInt finelevel,coarselevel,fineclevel,coarseclevel;
513     ierr = DMGetRefineLevel(dmfine,&finelevel);CHKERRQ(ierr);
514     ierr = DMGetCoarsenLevel(dmfine,&fineclevel);CHKERRQ(ierr);
515     ierr = DMGetRefineLevel(dmcoarse,&coarselevel);CHKERRQ(ierr);
516     ierr = DMGetCoarsenLevel(dmcoarse,&coarseclevel);CHKERRQ(ierr);
517     ierr = PetscInfo4(dmfine,"Restricting SNES solution vector from level %D-%D to level %D-%D\n",finelevel,fineclevel,coarselevel,coarseclevel);CHKERRQ(ierr);
518   }
519   if (dmfine == snes->dm) Xfine = snes->vec_sol;
520   else {
521     ierr  = DMGetNamedGlobalVector(dmfine,"SNESVecSol",&Xfine_named);CHKERRQ(ierr);
522     Xfine = Xfine_named;
523   }
524   ierr = DMGetNamedGlobalVector(dmcoarse,"SNESVecSol",&Xcoarse);CHKERRQ(ierr);
525   if (Inject) {
526     ierr = MatRestrict(Inject,Xfine,Xcoarse);CHKERRQ(ierr);
527   } else {
528     ierr = MatRestrict(Restrict,Xfine,Xcoarse);CHKERRQ(ierr);
529     ierr = VecPointwiseMult(Xcoarse,Xcoarse,Rscale);CHKERRQ(ierr);
530   }
531   ierr = DMRestoreNamedGlobalVector(dmcoarse,"SNESVecSol",&Xcoarse);CHKERRQ(ierr);
532   if (Xfine_named) {ierr = DMRestoreNamedGlobalVector(dmfine,"SNESVecSol",&Xfine_named);CHKERRQ(ierr);}
533   PetscFunctionReturn(0);
534 }
535 
536 static PetscErrorCode DMCoarsenHook_SNESVecSol(DM dm,DM dmc,void *ctx)
537 {
538   PetscErrorCode ierr;
539 
540   PetscFunctionBegin;
541   ierr = DMCoarsenHookAdd(dmc,DMCoarsenHook_SNESVecSol,DMRestrictHook_SNESVecSol,ctx);CHKERRQ(ierr);
542   PetscFunctionReturn(0);
543 }
544 
545 /* This may be called to rediscretize the operator on levels of linear multigrid. The DM shuffle is so the user can
546  * safely call SNESGetDM() in their residual evaluation routine. */
547 static PetscErrorCode KSPComputeOperators_SNES(KSP ksp,Mat A,Mat B,void *ctx)
548 {
549   SNES           snes = (SNES)ctx;
550   PetscErrorCode ierr;
551   Mat            Asave = A,Bsave = B;
552   Vec            X,Xnamed = NULL;
553   DM             dmsave;
554   void           *ctxsave;
555   PetscErrorCode (*jac)(SNES,Vec,Mat,Mat,void*);
556 
557   PetscFunctionBegin;
558   dmsave = snes->dm;
559   ierr   = KSPGetDM(ksp,&snes->dm);CHKERRQ(ierr);
560   if (dmsave == snes->dm) X = snes->vec_sol; /* We are on the finest level */
561   else {                                     /* We are on a coarser level, this vec was initialized using a DM restrict hook */
562     ierr = DMGetNamedGlobalVector(snes->dm,"SNESVecSol",&Xnamed);CHKERRQ(ierr);
563     X    = Xnamed;
564     ierr = SNESGetJacobian(snes,NULL,NULL,&jac,&ctxsave);CHKERRQ(ierr);
565     /* If the DM's don't match up, the MatFDColoring context needed for the jacobian won't match up either -- fixit. */
566     if (jac == SNESComputeJacobianDefaultColor) {
567       ierr = SNESSetJacobian(snes,NULL,NULL,SNESComputeJacobianDefaultColor,0);CHKERRQ(ierr);
568     }
569   }
570   /* put the previous context back */
571 
572   ierr = SNESComputeJacobian(snes,X,A,B);CHKERRQ(ierr);
573   if (snes->dm != dmsave && jac == SNESComputeJacobianDefaultColor) {
574     ierr = SNESSetJacobian(snes,NULL,NULL,jac,ctxsave);CHKERRQ(ierr);
575   }
576 
577   if (A != Asave || B != Bsave) SETERRQ(PetscObjectComm((PetscObject)snes),PETSC_ERR_SUP,"No support for changing matrices at this time");
578   if (Xnamed) {
579     ierr = DMRestoreNamedGlobalVector(snes->dm,"SNESVecSol",&Xnamed);CHKERRQ(ierr);
580   }
581   snes->dm = dmsave;
582   PetscFunctionReturn(0);
583 }
584 
585 /*@
586    SNESSetUpMatrices - ensures that matrices are available for SNES, to be called by SNESSetUp_XXX()
587 
588    Collective
589 
590    Input Arguments:
591 .  snes - snes to configure
592 
593    Level: developer
594 
595 .seealso: SNESSetUp()
596 @*/
597 PetscErrorCode SNESSetUpMatrices(SNES snes)
598 {
599   PetscErrorCode ierr;
600   DM             dm;
601   DMSNES         sdm;
602 
603   PetscFunctionBegin;
604   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
605   ierr = DMGetDMSNES(dm,&sdm);CHKERRQ(ierr);
606   if (!sdm->ops->computejacobian) SETERRQ(PetscObjectComm((PetscObject)snes),PETSC_ERR_PLIB,"DMSNES not properly configured");
607   else if (!snes->jacobian && snes->mf) {
608     Mat  J;
609     void *functx;
610     ierr = MatCreateSNESMF(snes,&J);CHKERRQ(ierr);
611     ierr = MatMFFDSetOptionsPrefix(J,((PetscObject)snes)->prefix);CHKERRQ(ierr);
612     ierr = MatSetFromOptions(J);CHKERRQ(ierr);
613     ierr = SNESGetFunction(snes,NULL,NULL,&functx);CHKERRQ(ierr);
614     ierr = SNESSetJacobian(snes,J,J,0,0);CHKERRQ(ierr);
615     ierr = MatDestroy(&J);CHKERRQ(ierr);
616   } else if (snes->mf_operator && !snes->jacobian_pre && !snes->jacobian) {
617     Mat J,B;
618     ierr = MatCreateSNESMF(snes,&J);CHKERRQ(ierr);
619     ierr = MatMFFDSetOptionsPrefix(J,((PetscObject)snes)->prefix);CHKERRQ(ierr);
620     ierr = MatSetFromOptions(J);CHKERRQ(ierr);
621     ierr = DMCreateMatrix(snes->dm,&B);CHKERRQ(ierr);
622     /* sdm->computejacobian was already set to reach here */
623     ierr = SNESSetJacobian(snes,J,B,NULL,NULL);CHKERRQ(ierr);
624     ierr = MatDestroy(&J);CHKERRQ(ierr);
625     ierr = MatDestroy(&B);CHKERRQ(ierr);
626   } else if (!snes->jacobian_pre) {
627     PetscDS   prob;
628     Mat       J, B;
629     PetscBool hasPrec = PETSC_FALSE;
630 
631     J    = snes->jacobian;
632     ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
633     if (prob) {ierr = PetscDSHasJacobianPreconditioner(prob, &hasPrec);CHKERRQ(ierr);}
634     if (J)            {ierr = PetscObjectReference((PetscObject) J);CHKERRQ(ierr);}
635     else if (hasPrec) {ierr = DMCreateMatrix(snes->dm, &J);CHKERRQ(ierr);}
636     ierr = DMCreateMatrix(snes->dm, &B);CHKERRQ(ierr);
637     ierr = SNESSetJacobian(snes, J ? J : B, B, NULL, NULL);CHKERRQ(ierr);
638     ierr = MatDestroy(&J);CHKERRQ(ierr);
639     ierr = MatDestroy(&B);CHKERRQ(ierr);
640   }
641   {
642     KSP ksp;
643     ierr = SNESGetKSP(snes,&ksp);CHKERRQ(ierr);
644     ierr = KSPSetComputeOperators(ksp,KSPComputeOperators_SNES,snes);CHKERRQ(ierr);
645     ierr = DMCoarsenHookAdd(snes->dm,DMCoarsenHook_SNESVecSol,DMRestrictHook_SNESVecSol,snes);CHKERRQ(ierr);
646   }
647   PetscFunctionReturn(0);
648 }
649 
650 /*@C
651    SNESMonitorSetFromOptions - Sets a monitor function and viewer appropriate for the type indicated by the user
652 
653    Collective on SNES
654 
655    Input Parameters:
656 +  snes - SNES object you wish to monitor
657 .  name - the monitor type one is seeking
658 .  help - message indicating what monitoring is done
659 .  manual - manual page for the monitor
660 .  monitor - the monitor function
661 -  monitorsetup - a function that is called once ONLY if the user selected this monitor that may set additional features of the SNES or PetscViewer objects
662 
663    Level: developer
664 
665 .seealso: PetscOptionsGetViewer(), PetscOptionsGetReal(), PetscOptionsHasName(), PetscOptionsGetString(),
666           PetscOptionsGetIntArray(), PetscOptionsGetRealArray(), PetscOptionsBool()
667           PetscOptionsInt(), PetscOptionsString(), PetscOptionsReal(), PetscOptionsBool(),
668           PetscOptionsName(), PetscOptionsBegin(), PetscOptionsEnd(), PetscOptionsHead(),
669           PetscOptionsStringArray(),PetscOptionsRealArray(), PetscOptionsScalar(),
670           PetscOptionsBoolGroupBegin(), PetscOptionsBoolGroup(), PetscOptionsBoolGroupEnd(),
671           PetscOptionsFList(), PetscOptionsEList()
672 @*/
673 PetscErrorCode  SNESMonitorSetFromOptions(SNES snes,const char name[],const char help[], const char manual[],PetscErrorCode (*monitor)(SNES,PetscInt,PetscReal,PetscViewerAndFormat*),PetscErrorCode (*monitorsetup)(SNES,PetscViewerAndFormat*))
674 {
675   PetscErrorCode    ierr;
676   PetscViewer       viewer;
677   PetscViewerFormat format;
678   PetscBool         flg;
679 
680   PetscFunctionBegin;
681   ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,name,&viewer,&format,&flg);CHKERRQ(ierr);
682   if (flg) {
683     PetscViewerAndFormat *vf;
684     ierr = PetscViewerAndFormatCreate(viewer,format,&vf);CHKERRQ(ierr);
685     ierr = PetscObjectDereference((PetscObject)viewer);CHKERRQ(ierr);
686     if (monitorsetup) {
687       ierr = (*monitorsetup)(snes,vf);CHKERRQ(ierr);
688     }
689     ierr = SNESMonitorSet(snes,(PetscErrorCode (*)(SNES,PetscInt,PetscReal,void*))monitor,vf,(PetscErrorCode (*)(void**))PetscViewerAndFormatDestroy);CHKERRQ(ierr);
690   }
691   PetscFunctionReturn(0);
692 }
693 
694 /*@
695    SNESSetFromOptions - Sets various SNES and KSP parameters from user options.
696 
697    Collective on SNES
698 
699    Input Parameter:
700 .  snes - the SNES context
701 
702    Options Database Keys:
703 +  -snes_type <type> - newtonls, newtontr, ngmres, ncg, nrichardson, qn, vi, fas, SNESType for complete list
704 .  -snes_stol - convergence tolerance in terms of the norm
705                 of the change in the solution between steps
706 .  -snes_atol <abstol> - absolute tolerance of residual norm
707 .  -snes_rtol <rtol> - relative decrease in tolerance norm from initial
708 .  -snes_divergence_tolerance <divtol> - if the residual goes above divtol*rnorm0, exit with divergence
709 .  -snes_force_iteration <force> - force SNESSolve() to take at least one iteration
710 .  -snes_max_it <max_it> - maximum number of iterations
711 .  -snes_max_funcs <max_funcs> - maximum number of function evaluations
712 .  -snes_max_fail <max_fail> - maximum number of line search failures allowed before stopping, default is none
713 .  -snes_max_linear_solve_fail - number of linear solver failures before SNESSolve() stops
714 .  -snes_lag_preconditioner <lag> - how often preconditioner is rebuilt (use -1 to never rebuild)
715 .  -snes_lag_jacobian <lag> - how often Jacobian is rebuilt (use -1 to never rebuild)
716 .  -snes_trtol <trtol> - trust region tolerance
717 .  -snes_no_convergence_test - skip convergence test in nonlinear
718                                solver; hence iterations will continue until max_it
719                                or some other criterion is reached. Saves expense
720                                of convergence test
721 .  -snes_monitor [ascii][:filename][:viewer format] - prints residual norm at each iteration. if no filename given prints to stdout
722 .  -snes_monitor_solution [ascii binary draw][:filename][:viewer format] - plots solution at each iteration
723 .  -snes_monitor_residual [ascii binary draw][:filename][:viewer format] - plots residual (not its norm) at each iteration
724 .  -snes_monitor_solution_update [ascii binary draw][:filename][:viewer format] - plots update to solution at each iteration
725 .  -snes_monitor_lg_residualnorm - plots residual norm at each iteration
726 .  -snes_monitor_lg_range - plots residual norm at each iteration
727 .  -snes_fd - use finite differences to compute Jacobian; very slow, only for testing
728 .  -snes_fd_color - use finite differences with coloring to compute Jacobian
729 .  -snes_mf_ksp_monitor - if using matrix-free multiply then print h at each KSP iteration
730 -  -snes_converged_reason - print the reason for convergence/divergence after each solve
731 
732     Options Database for Eisenstat-Walker method:
733 +  -snes_ksp_ew - use Eisenstat-Walker method for determining linear system convergence
734 .  -snes_ksp_ew_version ver - version of  Eisenstat-Walker method
735 .  -snes_ksp_ew_rtol0 <rtol0> - Sets rtol0
736 .  -snes_ksp_ew_rtolmax <rtolmax> - Sets rtolmax
737 .  -snes_ksp_ew_gamma <gamma> - Sets gamma
738 .  -snes_ksp_ew_alpha <alpha> - Sets alpha
739 .  -snes_ksp_ew_alpha2 <alpha2> - Sets alpha2
740 -  -snes_ksp_ew_threshold <threshold> - Sets threshold
741 
742    Notes:
743    To see all options, run your program with the -help option or consult
744    Users-Manual: ch_snes
745 
746    Level: beginner
747 
748 .keywords: SNES, nonlinear, set, options, database
749 
750 .seealso: SNESSetOptionsPrefix()
751 @*/
752 PetscErrorCode  SNESSetFromOptions(SNES snes)
753 {
754   PetscBool      flg,pcset,persist,set;
755   PetscInt       i,indx,lag,grids;
756   const char     *deft        = SNESNEWTONLS;
757   const char     *convtests[] = {"default","skip"};
758   SNESKSPEW      *kctx        = NULL;
759   char           type[256], monfilename[PETSC_MAX_PATH_LEN];
760   PetscErrorCode ierr;
761   PCSide         pcside;
762   const char     *optionsprefix;
763 
764   PetscFunctionBegin;
765   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
766   ierr = SNESRegisterAll();CHKERRQ(ierr);
767   ierr = PetscObjectOptionsBegin((PetscObject)snes);CHKERRQ(ierr);
768   if (((PetscObject)snes)->type_name) deft = ((PetscObject)snes)->type_name;
769   ierr = PetscOptionsFList("-snes_type","Nonlinear solver method","SNESSetType",SNESList,deft,type,256,&flg);CHKERRQ(ierr);
770   if (flg) {
771     ierr = SNESSetType(snes,type);CHKERRQ(ierr);
772   } else if (!((PetscObject)snes)->type_name) {
773     ierr = SNESSetType(snes,deft);CHKERRQ(ierr);
774   }
775   ierr = PetscOptionsReal("-snes_stol","Stop if step length less than","SNESSetTolerances",snes->stol,&snes->stol,NULL);CHKERRQ(ierr);
776   ierr = PetscOptionsReal("-snes_atol","Stop if function norm less than","SNESSetTolerances",snes->abstol,&snes->abstol,NULL);CHKERRQ(ierr);
777 
778   ierr = PetscOptionsReal("-snes_rtol","Stop if decrease in function norm less than","SNESSetTolerances",snes->rtol,&snes->rtol,NULL);CHKERRQ(ierr);
779   ierr = PetscOptionsReal("-snes_divergence_tolerance","Stop if residual norm increases by this factor","SNESSetDivergenceTolerance",snes->divtol,&snes->divtol,NULL);CHKERRQ(ierr);
780   ierr = PetscOptionsInt("-snes_max_it","Maximum iterations","SNESSetTolerances",snes->max_its,&snes->max_its,NULL);CHKERRQ(ierr);
781   ierr = PetscOptionsInt("-snes_max_funcs","Maximum function evaluations","SNESSetTolerances",snes->max_funcs,&snes->max_funcs,NULL);CHKERRQ(ierr);
782   ierr = PetscOptionsInt("-snes_max_fail","Maximum nonlinear step failures","SNESSetMaxNonlinearStepFailures",snes->maxFailures,&snes->maxFailures,NULL);CHKERRQ(ierr);
783   ierr = PetscOptionsInt("-snes_max_linear_solve_fail","Maximum failures in linear solves allowed","SNESSetMaxLinearSolveFailures",snes->maxLinearSolveFailures,&snes->maxLinearSolveFailures,NULL);CHKERRQ(ierr);
784   ierr = PetscOptionsBool("-snes_error_if_not_converged","Generate error if solver does not converge","SNESSetErrorIfNotConverged",snes->errorifnotconverged,&snes->errorifnotconverged,NULL);CHKERRQ(ierr);
785   ierr = PetscOptionsBool("-snes_force_iteration","Force SNESSolve() to take at least one iteration","SNESForceIteration",snes->forceiteration,&snes->forceiteration,NULL);CHKERRQ(ierr);
786 
787   ierr = PetscOptionsInt("-snes_lag_preconditioner","How often to rebuild preconditioner","SNESSetLagPreconditioner",snes->lagpreconditioner,&lag,&flg);CHKERRQ(ierr);
788   if (flg) {
789     ierr = SNESSetLagPreconditioner(snes,lag);CHKERRQ(ierr);
790   }
791   ierr = PetscOptionsBool("-snes_lag_preconditioner_persists","Preconditioner lagging through multiple solves","SNESSetLagPreconditionerPersists",snes->lagjac_persist,&persist,&flg);CHKERRQ(ierr);
792   if (flg) {
793     ierr = SNESSetLagPreconditionerPersists(snes,persist);CHKERRQ(ierr);
794   }
795   ierr = PetscOptionsInt("-snes_lag_jacobian","How often to rebuild Jacobian","SNESSetLagJacobian",snes->lagjacobian,&lag,&flg);CHKERRQ(ierr);
796   if (flg) {
797     ierr = SNESSetLagJacobian(snes,lag);CHKERRQ(ierr);
798   }
799   ierr = PetscOptionsBool("-snes_lag_jacobian_persists","Jacobian lagging through multiple solves","SNESSetLagJacobianPersists",snes->lagjac_persist,&persist,&flg);CHKERRQ(ierr);
800   if (flg) {
801     ierr = SNESSetLagJacobianPersists(snes,persist);CHKERRQ(ierr);
802   }
803 
804   ierr = PetscOptionsInt("-snes_grid_sequence","Use grid sequencing to generate initial guess","SNESSetGridSequence",snes->gridsequence,&grids,&flg);CHKERRQ(ierr);
805   if (flg) {
806     ierr = SNESSetGridSequence(snes,grids);CHKERRQ(ierr);
807   }
808 
809   ierr = PetscOptionsEList("-snes_convergence_test","Convergence test","SNESSetConvergenceTest",convtests,2,"default",&indx,&flg);CHKERRQ(ierr);
810   if (flg) {
811     switch (indx) {
812     case 0: ierr = SNESSetConvergenceTest(snes,SNESConvergedDefault,NULL,NULL);CHKERRQ(ierr); break;
813     case 1: ierr = SNESSetConvergenceTest(snes,SNESConvergedSkip,NULL,NULL);CHKERRQ(ierr);    break;
814     }
815   }
816 
817   ierr = PetscOptionsEList("-snes_norm_schedule","SNES Norm schedule","SNESSetNormSchedule",SNESNormSchedules,5,"function",&indx,&flg);CHKERRQ(ierr);
818   if (flg) { ierr = SNESSetNormSchedule(snes,(SNESNormSchedule)indx);CHKERRQ(ierr); }
819 
820   ierr = PetscOptionsEList("-snes_function_type","SNES Norm schedule","SNESSetFunctionType",SNESFunctionTypes,2,"unpreconditioned",&indx,&flg);CHKERRQ(ierr);
821   if (flg) { ierr = SNESSetFunctionType(snes,(SNESFunctionType)indx);CHKERRQ(ierr); }
822 
823   kctx = (SNESKSPEW*)snes->kspconvctx;
824 
825   ierr = PetscOptionsBool("-snes_ksp_ew","Use Eisentat-Walker linear system convergence test","SNESKSPSetUseEW",snes->ksp_ewconv,&snes->ksp_ewconv,NULL);CHKERRQ(ierr);
826 
827   ierr = PetscOptionsInt("-snes_ksp_ew_version","Version 1, 2 or 3","SNESKSPSetParametersEW",kctx->version,&kctx->version,NULL);CHKERRQ(ierr);
828   ierr = PetscOptionsReal("-snes_ksp_ew_rtol0","0 <= rtol0 < 1","SNESKSPSetParametersEW",kctx->rtol_0,&kctx->rtol_0,NULL);CHKERRQ(ierr);
829   ierr = PetscOptionsReal("-snes_ksp_ew_rtolmax","0 <= rtolmax < 1","SNESKSPSetParametersEW",kctx->rtol_max,&kctx->rtol_max,NULL);CHKERRQ(ierr);
830   ierr = PetscOptionsReal("-snes_ksp_ew_gamma","0 <= gamma <= 1","SNESKSPSetParametersEW",kctx->gamma,&kctx->gamma,NULL);CHKERRQ(ierr);
831   ierr = PetscOptionsReal("-snes_ksp_ew_alpha","1 < alpha <= 2","SNESKSPSetParametersEW",kctx->alpha,&kctx->alpha,NULL);CHKERRQ(ierr);
832   ierr = PetscOptionsReal("-snes_ksp_ew_alpha2","alpha2","SNESKSPSetParametersEW",kctx->alpha2,&kctx->alpha2,NULL);CHKERRQ(ierr);
833   ierr = PetscOptionsReal("-snes_ksp_ew_threshold","0 < threshold < 1","SNESKSPSetParametersEW",kctx->threshold,&kctx->threshold,NULL);CHKERRQ(ierr);
834 
835   flg  = PETSC_FALSE;
836   ierr = PetscOptionsBool("-snes_check_jacobian","Check each Jacobian with a differenced one","SNESUpdateCheckJacobian",flg,&flg,&set);CHKERRQ(ierr);
837   if (set && flg) {
838     ierr = SNESSetUpdate(snes,SNESUpdateCheckJacobian);CHKERRQ(ierr);
839   }
840 
841   flg  = PETSC_FALSE;
842   ierr = PetscOptionsBool("-snes_monitor_cancel","Remove all monitors","SNESMonitorCancel",flg,&flg,&set);CHKERRQ(ierr);
843   if (set && flg) {ierr = SNESMonitorCancel(snes);CHKERRQ(ierr);}
844 
845   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor","Monitor norm of function","SNESMonitorDefault",SNESMonitorDefault,NULL);CHKERRQ(ierr);
846   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor_short","Monitor norm of function with fewer digits","SNESMonitorDefaultShort",SNESMonitorDefaultShort,NULL);CHKERRQ(ierr);
847   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor_range","Monitor range of elements of function","SNESMonitorRange",SNESMonitorRange,NULL);CHKERRQ(ierr);
848 
849   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor_ratio","Monitor ratios of the norm of function for consecutive steps","SNESMonitorRatio",SNESMonitorRatio,SNESMonitorRatioSetUp);CHKERRQ(ierr);
850   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor_field","Monitor norm of function (split into fields)","SNESMonitorDefaultField",SNESMonitorDefaultField,NULL);CHKERRQ(ierr);
851   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor_solution","View solution at each iteration","SNESMonitorSolution",SNESMonitorSolution,NULL);CHKERRQ(ierr);
852   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor_solution_update","View correction at each iteration","SNESMonitorSolutionUpdate",SNESMonitorSolutionUpdate,NULL);CHKERRQ(ierr);
853   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor_residual","View residual at each iteration","SNESMonitorResidual",SNESMonitorResidual,NULL);CHKERRQ(ierr);
854   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor_jacupdate_spectrum","Print the change in the spectrum of the Jacobian","SNESMonitorJacUpdateSpectrum",SNESMonitorJacUpdateSpectrum,NULL);CHKERRQ(ierr);
855   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor_fields","Monitor norm of function per field","SNESMonitorSet",SNESMonitorFields,NULL);CHKERRQ(ierr);
856 
857   ierr = PetscOptionsString("-snes_monitor_python","Use Python function","SNESMonitorSet",0,monfilename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr);
858   if (flg) {ierr = PetscPythonMonitorSet((PetscObject)snes,monfilename);CHKERRQ(ierr);}
859 
860 
861   flg  = PETSC_FALSE;
862   ierr = PetscOptionsBool("-snes_monitor_lg_residualnorm","Plot function norm at each iteration","SNESMonitorLGResidualNorm",flg,&flg,NULL);CHKERRQ(ierr);
863   if (flg) {
864     PetscDrawLG ctx;
865 
866     ierr = SNESMonitorLGCreate(PetscObjectComm((PetscObject)snes),NULL,NULL,PETSC_DECIDE,PETSC_DECIDE,400,300,&ctx);CHKERRQ(ierr);
867     ierr = SNESMonitorSet(snes,SNESMonitorLGResidualNorm,ctx,(PetscErrorCode (*)(void**))PetscDrawLGDestroy);CHKERRQ(ierr);
868   }
869   flg  = PETSC_FALSE;
870   ierr = PetscOptionsBool("-snes_monitor_lg_range","Plot function range at each iteration","SNESMonitorLGRange",flg,&flg,NULL);CHKERRQ(ierr);
871   if (flg) {
872     PetscViewer ctx;
873 
874     ierr = PetscViewerDrawOpen(PetscObjectComm((PetscObject)snes),NULL,NULL,PETSC_DECIDE,PETSC_DECIDE,400,300,&ctx);CHKERRQ(ierr);
875     ierr = SNESMonitorSet(snes,SNESMonitorLGRange,ctx,(PetscErrorCode (*)(void**))PetscViewerDestroy);CHKERRQ(ierr);
876   }
877 
878 
879 
880   flg  = PETSC_FALSE;
881   ierr = PetscOptionsBool("-snes_fd","Use finite differences (slow) to compute Jacobian","SNESComputeJacobianDefault",flg,&flg,NULL);CHKERRQ(ierr);
882   if (flg) {
883     void    *functx;
884     DM      dm;
885     DMSNES  sdm;
886     ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
887     ierr = DMGetDMSNES(dm,&sdm);CHKERRQ(ierr);
888     sdm->jacobianctx = NULL;
889     ierr = SNESGetFunction(snes,NULL,NULL,&functx);CHKERRQ(ierr);
890     ierr = SNESSetJacobian(snes,snes->jacobian,snes->jacobian_pre,SNESComputeJacobianDefault,functx);CHKERRQ(ierr);
891     ierr = PetscInfo(snes,"Setting default finite difference Jacobian matrix\n");CHKERRQ(ierr);
892   }
893 
894   flg  = PETSC_FALSE;
895   ierr = PetscOptionsBool("-snes_fd_function","Use finite differences (slow) to compute function from user objective","SNESObjectiveComputeFunctionDefaultFD",flg,&flg,NULL);CHKERRQ(ierr);
896   if (flg) {
897     ierr = SNESSetFunction(snes,NULL,SNESObjectiveComputeFunctionDefaultFD,NULL);CHKERRQ(ierr);
898   }
899 
900   flg  = PETSC_FALSE;
901   ierr = PetscOptionsBool("-snes_fd_color","Use finite differences with coloring to compute Jacobian","SNESComputeJacobianDefaultColor",flg,&flg,NULL);CHKERRQ(ierr);
902   if (flg) {
903     DM             dm;
904     DMSNES         sdm;
905     ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
906     ierr = DMGetDMSNES(dm,&sdm);CHKERRQ(ierr);
907     sdm->jacobianctx = NULL;
908     ierr = SNESSetJacobian(snes,snes->jacobian,snes->jacobian_pre,SNESComputeJacobianDefaultColor,0);CHKERRQ(ierr);
909     ierr = PetscInfo(snes,"Setting default finite difference coloring Jacobian matrix\n");CHKERRQ(ierr);
910   }
911 
912   flg  = PETSC_FALSE;
913   ierr = PetscOptionsBool("-snes_mf_operator","Use a Matrix-Free Jacobian with user-provided preconditioner matrix","SNESSetUseMatrixFree",PETSC_FALSE,&snes->mf_operator,&flg);CHKERRQ(ierr);
914   if (flg && snes->mf_operator) {
915     snes->mf_operator = PETSC_TRUE;
916     snes->mf          = PETSC_TRUE;
917   }
918   flg  = PETSC_FALSE;
919   ierr = PetscOptionsBool("-snes_mf","Use a Matrix-Free Jacobian with no preconditioner matrix","SNESSetUseMatrixFree",PETSC_FALSE,&snes->mf,&flg);CHKERRQ(ierr);
920   if (!flg && snes->mf_operator) snes->mf = PETSC_TRUE;
921   ierr = PetscOptionsInt("-snes_mf_version","Matrix-Free routines version 1 or 2","None",snes->mf_version,&snes->mf_version,0);CHKERRQ(ierr);
922 
923   flg  = PETSC_FALSE;
924   ierr = SNESGetNPCSide(snes,&pcside);CHKERRQ(ierr);
925   ierr = PetscOptionsEnum("-snes_npc_side","SNES nonlinear preconditioner side","SNESSetNPCSide",PCSides,(PetscEnum)pcside,(PetscEnum*)&pcside,&flg);CHKERRQ(ierr);
926   if (flg) {ierr = SNESSetNPCSide(snes,pcside);CHKERRQ(ierr);}
927 
928 #if defined(PETSC_HAVE_SAWS)
929   /*
930     Publish convergence information using SAWs
931   */
932   flg  = PETSC_FALSE;
933   ierr = PetscOptionsBool("-snes_monitor_saws","Publish SNES progress using SAWs","SNESMonitorSet",flg,&flg,NULL);CHKERRQ(ierr);
934   if (flg) {
935     void *ctx;
936     ierr = SNESMonitorSAWsCreate(snes,&ctx);CHKERRQ(ierr);
937     ierr = SNESMonitorSet(snes,SNESMonitorSAWs,ctx,SNESMonitorSAWsDestroy);CHKERRQ(ierr);
938   }
939 #endif
940 #if defined(PETSC_HAVE_SAWS)
941   {
942   PetscBool set;
943   flg  = PETSC_FALSE;
944   ierr = PetscOptionsBool("-snes_saws_block","Block for SAWs at end of SNESSolve","PetscObjectSAWsBlock",((PetscObject)snes)->amspublishblock,&flg,&set);CHKERRQ(ierr);
945   if (set) {
946     ierr = PetscObjectSAWsSetBlock((PetscObject)snes,flg);CHKERRQ(ierr);
947   }
948   }
949 #endif
950 
951   for (i = 0; i < numberofsetfromoptions; i++) {
952     ierr = (*othersetfromoptions[i])(snes);CHKERRQ(ierr);
953   }
954 
955   if (snes->ops->setfromoptions) {
956     ierr = (*snes->ops->setfromoptions)(PetscOptionsObject,snes);CHKERRQ(ierr);
957   }
958 
959   /* process any options handlers added with PetscObjectAddOptionsHandler() */
960   ierr = PetscObjectProcessOptionsHandlers(PetscOptionsObject,(PetscObject)snes);CHKERRQ(ierr);
961   ierr = PetscOptionsEnd();CHKERRQ(ierr);
962 
963   if (!snes->linesearch) {
964     ierr = SNESGetLineSearch(snes, &snes->linesearch);CHKERRQ(ierr);
965   }
966   ierr = SNESLineSearchSetFromOptions(snes->linesearch);CHKERRQ(ierr);
967 
968   if (!snes->ksp) {ierr = SNESGetKSP(snes,&snes->ksp);CHKERRQ(ierr);}
969   ierr = KSPSetOperators(snes->ksp,snes->jacobian,snes->jacobian_pre);CHKERRQ(ierr);
970   ierr = KSPSetFromOptions(snes->ksp);CHKERRQ(ierr);
971 
972   /* if someone has set the SNES NPC type, create it. */
973   ierr = SNESGetOptionsPrefix(snes, &optionsprefix);CHKERRQ(ierr);
974   ierr = PetscOptionsHasName(((PetscObject)snes)->options,optionsprefix, "-npc_snes_type", &pcset);CHKERRQ(ierr);
975   if (pcset && (!snes->npc)) {
976     ierr = SNESGetNPC(snes, &snes->npc);CHKERRQ(ierr);
977   }
978   PetscFunctionReturn(0);
979 }
980 
981 /*@C
982    SNESSetComputeApplicationContext - Sets an optional function to compute a user-defined context for
983    the nonlinear solvers.
984 
985    Logically Collective on SNES
986 
987    Input Parameters:
988 +  snes - the SNES context
989 .  compute - function to compute the context
990 -  destroy - function to destroy the context
991 
992    Level: intermediate
993 
994    Notes:
995    This function is currently not available from Fortran.
996 
997 .keywords: SNES, nonlinear, set, application, context
998 
999 .seealso: SNESGetApplicationContext(), SNESSetComputeApplicationContext(), SNESGetApplicationContext()
1000 @*/
1001 PetscErrorCode  SNESSetComputeApplicationContext(SNES snes,PetscErrorCode (*compute)(SNES,void**),PetscErrorCode (*destroy)(void**))
1002 {
1003   PetscFunctionBegin;
1004   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1005   snes->ops->usercompute = compute;
1006   snes->ops->userdestroy = destroy;
1007   PetscFunctionReturn(0);
1008 }
1009 
1010 /*@
1011    SNESSetApplicationContext - Sets the optional user-defined context for
1012    the nonlinear solvers.
1013 
1014    Logically Collective on SNES
1015 
1016    Input Parameters:
1017 +  snes - the SNES context
1018 -  usrP - optional user context
1019 
1020    Level: intermediate
1021 
1022    Fortran Notes: To use this from Fortran you must write a Fortran interface definition for this
1023     function that tells Fortran the Fortran derived data type that you are passing in as the ctx argument.
1024 
1025 .keywords: SNES, nonlinear, set, application, context
1026 
1027 .seealso: SNESGetApplicationContext()
1028 @*/
1029 PetscErrorCode  SNESSetApplicationContext(SNES snes,void *usrP)
1030 {
1031   PetscErrorCode ierr;
1032   KSP            ksp;
1033 
1034   PetscFunctionBegin;
1035   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1036   ierr       = SNESGetKSP(snes,&ksp);CHKERRQ(ierr);
1037   ierr       = KSPSetApplicationContext(ksp,usrP);CHKERRQ(ierr);
1038   snes->user = usrP;
1039   PetscFunctionReturn(0);
1040 }
1041 
1042 /*@
1043    SNESGetApplicationContext - Gets the user-defined context for the
1044    nonlinear solvers.
1045 
1046    Not Collective
1047 
1048    Input Parameter:
1049 .  snes - SNES context
1050 
1051    Output Parameter:
1052 .  usrP - user context
1053 
1054    Fortran Notes: To use this from Fortran you must write a Fortran interface definition for this
1055     function that tells Fortran the Fortran derived data type that you are passing in as the ctx argument.
1056 
1057    Level: intermediate
1058 
1059 .keywords: SNES, nonlinear, get, application, context
1060 
1061 .seealso: SNESSetApplicationContext()
1062 @*/
1063 PetscErrorCode  SNESGetApplicationContext(SNES snes,void *usrP)
1064 {
1065   PetscFunctionBegin;
1066   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1067   *(void**)usrP = snes->user;
1068   PetscFunctionReturn(0);
1069 }
1070 
1071 /*@
1072    SNESSetUseMatrixFree - indicates that SNES should use matrix free finite difference matrix vector products internally to apply
1073                           the Jacobian.
1074 
1075    Collective on SNES
1076 
1077    Input Parameters:
1078 +  snes - SNES context
1079 .  mf - use matrix-free for both the Amat and Pmat used by SNESSetJacobian(), both the Amat and Pmat set in SNESSetJacobian() will be ignored
1080 -  mf_operator - use matrix-free only for the Amat used by SNESSetJacobian(), this means the user provided Pmat will continue to be used
1081 
1082    Options Database:
1083 + -snes_mf - use matrix free for both the mat and pmat operator
1084 - -snes_mf_operator - use matrix free only for the mat operator
1085 
1086    Level: intermediate
1087 
1088 .keywords: SNES, nonlinear, get, iteration, number,
1089 
1090 .seealso:   SNESGetUseMatrixFree(), MatCreateSNESMF()
1091 @*/
1092 PetscErrorCode  SNESSetUseMatrixFree(SNES snes,PetscBool mf_operator,PetscBool mf)
1093 {
1094   PetscFunctionBegin;
1095   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1096   PetscValidLogicalCollectiveBool(snes,mf_operator,2);
1097   PetscValidLogicalCollectiveBool(snes,mf,3);
1098   if (mf && !mf_operator) SETERRQ(PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_INCOMP,"If using mf must also use mf_operator");
1099   snes->mf          = mf;
1100   snes->mf_operator = mf_operator;
1101   PetscFunctionReturn(0);
1102 }
1103 
1104 /*@
1105    SNESGetUseMatrixFree - indicates if the SNES uses matrix free finite difference matrix vector products to apply
1106                           the Jacobian.
1107 
1108    Collective on SNES
1109 
1110    Input Parameter:
1111 .  snes - SNES context
1112 
1113    Output Parameters:
1114 +  mf - use matrix-free for both the Amat and Pmat used by SNESSetJacobian(), both the Amat and Pmat set in SNESSetJacobian() will be ignored
1115 -  mf_operator - use matrix-free only for the Amat used by SNESSetJacobian(), this means the user provided Pmat will continue to be used
1116 
1117    Options Database:
1118 + -snes_mf - use matrix free for both the mat and pmat operator
1119 - -snes_mf_operator - use matrix free only for the mat operator
1120 
1121    Level: intermediate
1122 
1123 .keywords: SNES, nonlinear, get, iteration, number,
1124 
1125 .seealso:   SNESSetUseMatrixFree(), MatCreateSNESMF()
1126 @*/
1127 PetscErrorCode  SNESGetUseMatrixFree(SNES snes,PetscBool *mf_operator,PetscBool *mf)
1128 {
1129   PetscFunctionBegin;
1130   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1131   if (mf)          *mf          = snes->mf;
1132   if (mf_operator) *mf_operator = snes->mf_operator;
1133   PetscFunctionReturn(0);
1134 }
1135 
1136 /*@
1137    SNESGetIterationNumber - Gets the number of nonlinear iterations completed
1138    at this time.
1139 
1140    Not Collective
1141 
1142    Input Parameter:
1143 .  snes - SNES context
1144 
1145    Output Parameter:
1146 .  iter - iteration number
1147 
1148    Notes:
1149    For example, during the computation of iteration 2 this would return 1.
1150 
1151    This is useful for using lagged Jacobians (where one does not recompute the
1152    Jacobian at each SNES iteration). For example, the code
1153 .vb
1154       ierr = SNESGetIterationNumber(snes,&it);
1155       if (!(it % 2)) {
1156         [compute Jacobian here]
1157       }
1158 .ve
1159    can be used in your ComputeJacobian() function to cause the Jacobian to be
1160    recomputed every second SNES iteration.
1161 
1162    Level: intermediate
1163 
1164 .keywords: SNES, nonlinear, get, iteration, number,
1165 
1166 .seealso:   SNESGetLinearSolveIterations()
1167 @*/
1168 PetscErrorCode  SNESGetIterationNumber(SNES snes,PetscInt *iter)
1169 {
1170   PetscFunctionBegin;
1171   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1172   PetscValidIntPointer(iter,2);
1173   *iter = snes->iter;
1174   PetscFunctionReturn(0);
1175 }
1176 
1177 /*@
1178    SNESSetIterationNumber - Sets the current iteration number.
1179 
1180    Not Collective
1181 
1182    Input Parameter:
1183 .  snes - SNES context
1184 .  iter - iteration number
1185 
1186    Level: developer
1187 
1188 .keywords: SNES, nonlinear, set, iteration, number,
1189 
1190 .seealso:   SNESGetLinearSolveIterations()
1191 @*/
1192 PetscErrorCode  SNESSetIterationNumber(SNES snes,PetscInt iter)
1193 {
1194   PetscErrorCode ierr;
1195 
1196   PetscFunctionBegin;
1197   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1198   ierr       = PetscObjectSAWsTakeAccess((PetscObject)snes);CHKERRQ(ierr);
1199   snes->iter = iter;
1200   ierr       = PetscObjectSAWsGrantAccess((PetscObject)snes);CHKERRQ(ierr);
1201   PetscFunctionReturn(0);
1202 }
1203 
1204 /*@
1205    SNESGetNonlinearStepFailures - Gets the number of unsuccessful steps
1206    attempted by the nonlinear solver.
1207 
1208    Not Collective
1209 
1210    Input Parameter:
1211 .  snes - SNES context
1212 
1213    Output Parameter:
1214 .  nfails - number of unsuccessful steps attempted
1215 
1216    Notes:
1217    This counter is reset to zero for each successive call to SNESSolve().
1218 
1219    Level: intermediate
1220 
1221 .keywords: SNES, nonlinear, get, number, unsuccessful, steps
1222 
1223 .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(), SNESGetLinearSolveFailures(),
1224           SNESSetMaxNonlinearStepFailures(), SNESGetMaxNonlinearStepFailures()
1225 @*/
1226 PetscErrorCode  SNESGetNonlinearStepFailures(SNES snes,PetscInt *nfails)
1227 {
1228   PetscFunctionBegin;
1229   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1230   PetscValidIntPointer(nfails,2);
1231   *nfails = snes->numFailures;
1232   PetscFunctionReturn(0);
1233 }
1234 
1235 /*@
1236    SNESSetMaxNonlinearStepFailures - Sets the maximum number of unsuccessful steps
1237    attempted by the nonlinear solver before it gives up.
1238 
1239    Not Collective
1240 
1241    Input Parameters:
1242 +  snes     - SNES context
1243 -  maxFails - maximum of unsuccessful steps
1244 
1245    Level: intermediate
1246 
1247 .keywords: SNES, nonlinear, set, maximum, unsuccessful, steps
1248 
1249 .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(), SNESGetLinearSolveFailures(),
1250           SNESGetMaxNonlinearStepFailures(), SNESGetNonlinearStepFailures()
1251 @*/
1252 PetscErrorCode  SNESSetMaxNonlinearStepFailures(SNES snes, PetscInt maxFails)
1253 {
1254   PetscFunctionBegin;
1255   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1256   snes->maxFailures = maxFails;
1257   PetscFunctionReturn(0);
1258 }
1259 
1260 /*@
1261    SNESGetMaxNonlinearStepFailures - Gets the maximum number of unsuccessful steps
1262    attempted by the nonlinear solver before it gives up.
1263 
1264    Not Collective
1265 
1266    Input Parameter:
1267 .  snes     - SNES context
1268 
1269    Output Parameter:
1270 .  maxFails - maximum of unsuccessful steps
1271 
1272    Level: intermediate
1273 
1274 .keywords: SNES, nonlinear, get, maximum, unsuccessful, steps
1275 
1276 .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(), SNESGetLinearSolveFailures(),
1277           SNESSetMaxNonlinearStepFailures(), SNESGetNonlinearStepFailures()
1278 
1279 @*/
1280 PetscErrorCode  SNESGetMaxNonlinearStepFailures(SNES snes, PetscInt *maxFails)
1281 {
1282   PetscFunctionBegin;
1283   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1284   PetscValidIntPointer(maxFails,2);
1285   *maxFails = snes->maxFailures;
1286   PetscFunctionReturn(0);
1287 }
1288 
1289 /*@
1290    SNESGetNumberFunctionEvals - Gets the number of user provided function evaluations
1291      done by SNES.
1292 
1293    Not Collective
1294 
1295    Input Parameter:
1296 .  snes     - SNES context
1297 
1298    Output Parameter:
1299 .  nfuncs - number of evaluations
1300 
1301    Level: intermediate
1302 
1303    Notes: Reset every time SNESSolve is called unless SNESSetCountersReset() is used.
1304 
1305 .keywords: SNES, nonlinear, get, maximum, unsuccessful, steps
1306 
1307 .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(), SNESGetLinearSolveFailures(), SNESSetCountersReset()
1308 @*/
1309 PetscErrorCode  SNESGetNumberFunctionEvals(SNES snes, PetscInt *nfuncs)
1310 {
1311   PetscFunctionBegin;
1312   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1313   PetscValidIntPointer(nfuncs,2);
1314   *nfuncs = snes->nfuncs;
1315   PetscFunctionReturn(0);
1316 }
1317 
1318 /*@
1319    SNESGetLinearSolveFailures - Gets the number of failed (non-converged)
1320    linear solvers.
1321 
1322    Not Collective
1323 
1324    Input Parameter:
1325 .  snes - SNES context
1326 
1327    Output Parameter:
1328 .  nfails - number of failed solves
1329 
1330    Level: intermediate
1331 
1332    Options Database Keys:
1333 . -snes_max_linear_solve_fail <num> - The number of failures before the solve is terminated
1334 
1335    Notes:
1336    This counter is reset to zero for each successive call to SNESSolve().
1337 
1338 .keywords: SNES, nonlinear, get, number, unsuccessful, steps
1339 
1340 .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures()
1341 @*/
1342 PetscErrorCode  SNESGetLinearSolveFailures(SNES snes,PetscInt *nfails)
1343 {
1344   PetscFunctionBegin;
1345   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1346   PetscValidIntPointer(nfails,2);
1347   *nfails = snes->numLinearSolveFailures;
1348   PetscFunctionReturn(0);
1349 }
1350 
1351 /*@
1352    SNESSetMaxLinearSolveFailures - the number of failed linear solve attempts
1353    allowed before SNES returns with a diverged reason of SNES_DIVERGED_LINEAR_SOLVE
1354 
1355    Logically Collective on SNES
1356 
1357    Input Parameters:
1358 +  snes     - SNES context
1359 -  maxFails - maximum allowed linear solve failures
1360 
1361    Level: intermediate
1362 
1363    Options Database Keys:
1364 . -snes_max_linear_solve_fail <num> - The number of failures before the solve is terminated
1365 
1366    Notes: By default this is 0; that is SNES returns on the first failed linear solve
1367 
1368 .keywords: SNES, nonlinear, set, maximum, unsuccessful, steps
1369 
1370 .seealso: SNESGetLinearSolveFailures(), SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations()
1371 @*/
1372 PetscErrorCode  SNESSetMaxLinearSolveFailures(SNES snes, PetscInt maxFails)
1373 {
1374   PetscFunctionBegin;
1375   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1376   PetscValidLogicalCollectiveInt(snes,maxFails,2);
1377   snes->maxLinearSolveFailures = maxFails;
1378   PetscFunctionReturn(0);
1379 }
1380 
1381 /*@
1382    SNESGetMaxLinearSolveFailures - gets the maximum number of linear solve failures that
1383      are allowed before SNES terminates
1384 
1385    Not Collective
1386 
1387    Input Parameter:
1388 .  snes     - SNES context
1389 
1390    Output Parameter:
1391 .  maxFails - maximum of unsuccessful solves allowed
1392 
1393    Level: intermediate
1394 
1395    Notes: By default this is 1; that is SNES returns on the first failed linear solve
1396 
1397 .keywords: SNES, nonlinear, get, maximum, unsuccessful, steps
1398 
1399 .seealso: SNESGetLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(),
1400 @*/
1401 PetscErrorCode  SNESGetMaxLinearSolveFailures(SNES snes, PetscInt *maxFails)
1402 {
1403   PetscFunctionBegin;
1404   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1405   PetscValidIntPointer(maxFails,2);
1406   *maxFails = snes->maxLinearSolveFailures;
1407   PetscFunctionReturn(0);
1408 }
1409 
1410 /*@
1411    SNESGetLinearSolveIterations - Gets the total number of linear iterations
1412    used by the nonlinear solver.
1413 
1414    Not Collective
1415 
1416    Input Parameter:
1417 .  snes - SNES context
1418 
1419    Output Parameter:
1420 .  lits - number of linear iterations
1421 
1422    Notes:
1423    This counter is reset to zero for each successive call to SNESSolve() unless SNESSetCountersReset() is used.
1424 
1425    If the linear solver fails inside the SNESSolve() the iterations for that call to the linear solver are not included. If you wish to count them
1426    then call KSPGetIterationNumber() after the failed solve.
1427 
1428    Level: intermediate
1429 
1430 .keywords: SNES, nonlinear, get, number, linear, iterations
1431 
1432 .seealso:  SNESGetIterationNumber(), SNESGetLinearSolveFailures(), SNESGetMaxLinearSolveFailures(), SNESSetCountersReset()
1433 @*/
1434 PetscErrorCode  SNESGetLinearSolveIterations(SNES snes,PetscInt *lits)
1435 {
1436   PetscFunctionBegin;
1437   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1438   PetscValidIntPointer(lits,2);
1439   *lits = snes->linear_its;
1440   PetscFunctionReturn(0);
1441 }
1442 
1443 /*@
1444    SNESSetCountersReset - Sets whether or not the counters for linear iterations and function evaluations
1445    are reset every time SNESSolve() is called.
1446 
1447    Logically Collective on SNES
1448 
1449    Input Parameter:
1450 +  snes - SNES context
1451 -  reset - whether to reset the counters or not
1452 
1453    Notes:
1454    This defaults to PETSC_TRUE
1455 
1456    Level: developer
1457 
1458 .keywords: SNES, nonlinear, set, reset, number, linear, iterations
1459 
1460 .seealso:  SNESGetNumberFunctionEvals(), SNESGetLinearSolveIterations(), SNESGetNPC()
1461 @*/
1462 PetscErrorCode  SNESSetCountersReset(SNES snes,PetscBool reset)
1463 {
1464   PetscFunctionBegin;
1465   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1466   PetscValidLogicalCollectiveBool(snes,reset,2);
1467   snes->counters_reset = reset;
1468   PetscFunctionReturn(0);
1469 }
1470 
1471 
1472 /*@
1473    SNESSetKSP - Sets a KSP context for the SNES object to use
1474 
1475    Not Collective, but the SNES and KSP objects must live on the same MPI_Comm
1476 
1477    Input Parameters:
1478 +  snes - the SNES context
1479 -  ksp - the KSP context
1480 
1481    Notes:
1482    The SNES object already has its KSP object, you can obtain with SNESGetKSP()
1483    so this routine is rarely needed.
1484 
1485    The KSP object that is already in the SNES object has its reference count
1486    decreased by one.
1487 
1488    Level: developer
1489 
1490 .keywords: SNES, nonlinear, get, KSP, context
1491 
1492 .seealso: KSPGetPC(), SNESCreate(), KSPCreate(), SNESSetKSP()
1493 @*/
1494 PetscErrorCode  SNESSetKSP(SNES snes,KSP ksp)
1495 {
1496   PetscErrorCode ierr;
1497 
1498   PetscFunctionBegin;
1499   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1500   PetscValidHeaderSpecific(ksp,KSP_CLASSID,2);
1501   PetscCheckSameComm(snes,1,ksp,2);
1502   ierr = PetscObjectReference((PetscObject)ksp);CHKERRQ(ierr);
1503   if (snes->ksp) {ierr = PetscObjectDereference((PetscObject)snes->ksp);CHKERRQ(ierr);}
1504   snes->ksp = ksp;
1505   PetscFunctionReturn(0);
1506 }
1507 
1508 /* -----------------------------------------------------------*/
1509 /*@
1510    SNESCreate - Creates a nonlinear solver context.
1511 
1512    Collective on MPI_Comm
1513 
1514    Input Parameters:
1515 .  comm - MPI communicator
1516 
1517    Output Parameter:
1518 .  outsnes - the new SNES context
1519 
1520    Options Database Keys:
1521 +   -snes_mf - Activates default matrix-free Jacobian-vector products,
1522                and no preconditioning matrix
1523 .   -snes_mf_operator - Activates default matrix-free Jacobian-vector
1524                products, and a user-provided preconditioning matrix
1525                as set by SNESSetJacobian()
1526 -   -snes_fd - Uses (slow!) finite differences to compute Jacobian
1527 
1528    Level: beginner
1529 
1530    Developer Notes: SNES always creates a KSP object even though many SNES methods do not use it. This is
1531                     unfortunate and should be fixed at some point. The flag snes->usesksp indicates if the
1532                     particular method does use KSP and regulates if the information about the KSP is printed
1533                     in SNESView(). TSSetFromOptions() does call SNESSetFromOptions() which can lead to users being confused
1534                     by help messages about meaningless SNES options.
1535 
1536                     SNES always creates the snes->kspconvctx even though it is used by only one type. This should
1537                     be fixed.
1538 
1539 .keywords: SNES, nonlinear, create, context
1540 
1541 .seealso: SNESSolve(), SNESDestroy(), SNES, SNESSetLagPreconditioner()
1542 
1543 @*/
1544 PetscErrorCode  SNESCreate(MPI_Comm comm,SNES *outsnes)
1545 {
1546   PetscErrorCode ierr;
1547   SNES           snes;
1548   SNESKSPEW      *kctx;
1549 
1550   PetscFunctionBegin;
1551   PetscValidPointer(outsnes,2);
1552   *outsnes = NULL;
1553   ierr = SNESInitializePackage();CHKERRQ(ierr);
1554 
1555   ierr = PetscHeaderCreate(snes,SNES_CLASSID,"SNES","Nonlinear solver","SNES",comm,SNESDestroy,SNESView);CHKERRQ(ierr);
1556 
1557   snes->ops->converged    = SNESConvergedDefault;
1558   snes->usesksp           = PETSC_TRUE;
1559   snes->tolerancesset     = PETSC_FALSE;
1560   snes->max_its           = 50;
1561   snes->max_funcs         = 10000;
1562   snes->norm              = 0.0;
1563   snes->normschedule      = SNES_NORM_ALWAYS;
1564   snes->functype          = SNES_FUNCTION_DEFAULT;
1565 #if defined(PETSC_USE_REAL_SINGLE)
1566   snes->rtol              = 1.e-5;
1567 #else
1568   snes->rtol              = 1.e-8;
1569 #endif
1570   snes->ttol              = 0.0;
1571 #if defined(PETSC_USE_REAL_SINGLE)
1572   snes->abstol            = 1.e-25;
1573 #else
1574   snes->abstol            = 1.e-50;
1575 #endif
1576 #if defined(PETSC_USE_REAL_SINGLE)
1577   snes->stol              = 1.e-5;
1578 #else
1579   snes->stol              = 1.e-8;
1580 #endif
1581 #if defined(PETSC_USE_REAL_SINGLE)
1582   snes->deltatol          = 1.e-6;
1583 #else
1584   snes->deltatol          = 1.e-12;
1585 #endif
1586   snes->divtol            = 1.e4;
1587   snes->rnorm0            = 0;
1588   snes->nfuncs            = 0;
1589   snes->numFailures       = 0;
1590   snes->maxFailures       = 1;
1591   snes->linear_its        = 0;
1592   snes->lagjacobian       = 1;
1593   snes->jac_iter          = 0;
1594   snes->lagjac_persist    = PETSC_FALSE;
1595   snes->lagpreconditioner = 1;
1596   snes->pre_iter          = 0;
1597   snes->lagpre_persist    = PETSC_FALSE;
1598   snes->numbermonitors    = 0;
1599   snes->data              = 0;
1600   snes->setupcalled       = PETSC_FALSE;
1601   snes->ksp_ewconv        = PETSC_FALSE;
1602   snes->nwork             = 0;
1603   snes->work              = 0;
1604   snes->nvwork            = 0;
1605   snes->vwork             = 0;
1606   snes->conv_hist_len     = 0;
1607   snes->conv_hist_max     = 0;
1608   snes->conv_hist         = NULL;
1609   snes->conv_hist_its     = NULL;
1610   snes->conv_hist_reset   = PETSC_TRUE;
1611   snes->counters_reset    = PETSC_TRUE;
1612   snes->vec_func_init_set = PETSC_FALSE;
1613   snes->reason            = SNES_CONVERGED_ITERATING;
1614   snes->npcside           = PC_RIGHT;
1615 
1616   snes->mf          = PETSC_FALSE;
1617   snes->mf_operator = PETSC_FALSE;
1618   snes->mf_version  = 1;
1619 
1620   snes->numLinearSolveFailures = 0;
1621   snes->maxLinearSolveFailures = 1;
1622 
1623   snes->vizerotolerance = 1.e-8;
1624 
1625   /* Set this to true if the implementation of SNESSolve_XXX does compute the residual at the final solution. */
1626   snes->alwayscomputesfinalresidual = PETSC_FALSE;
1627 
1628   /* Create context to compute Eisenstat-Walker relative tolerance for KSP */
1629   ierr = PetscNewLog(snes,&kctx);CHKERRQ(ierr);
1630 
1631   snes->kspconvctx  = (void*)kctx;
1632   kctx->version     = 2;
1633   kctx->rtol_0      = .3; /* Eisenstat and Walker suggest rtol_0=.5, but
1634                              this was too large for some test cases */
1635   kctx->rtol_last   = 0.0;
1636   kctx->rtol_max    = .9;
1637   kctx->gamma       = 1.0;
1638   kctx->alpha       = .5*(1.0 + PetscSqrtReal(5.0));
1639   kctx->alpha2      = kctx->alpha;
1640   kctx->threshold   = .1;
1641   kctx->lresid_last = 0.0;
1642   kctx->norm_last   = 0.0;
1643 
1644   *outsnes = snes;
1645   PetscFunctionReturn(0);
1646 }
1647 
1648 /*MC
1649     SNESFunction - Functional form used to convey the nonlinear function to be solved by SNES
1650 
1651      Synopsis:
1652      #include "petscsnes.h"
1653      PetscErrorCode SNESFunction(SNES snes,Vec x,Vec f,void *ctx);
1654 
1655      Input Parameters:
1656 +     snes - the SNES context
1657 .     x    - state at which to evaluate residual
1658 -     ctx     - optional user-defined function context, passed in with SNESSetFunction()
1659 
1660      Output Parameter:
1661 .     f  - vector to put residual (function value)
1662 
1663    Level: intermediate
1664 
1665 .seealso:   SNESSetFunction(), SNESGetFunction()
1666 M*/
1667 
1668 /*@C
1669    SNESSetFunction - Sets the function evaluation routine and function
1670    vector for use by the SNES routines in solving systems of nonlinear
1671    equations.
1672 
1673    Logically Collective on SNES
1674 
1675    Input Parameters:
1676 +  snes - the SNES context
1677 .  r - vector to store function value
1678 .  f - function evaluation routine; see SNESFunction for calling sequence details
1679 -  ctx - [optional] user-defined context for private data for the
1680          function evaluation routine (may be NULL)
1681 
1682    Notes:
1683    The Newton-like methods typically solve linear systems of the form
1684 $      f'(x) x = -f(x),
1685    where f'(x) denotes the Jacobian matrix and f(x) is the function.
1686 
1687    Level: beginner
1688 
1689 .keywords: SNES, nonlinear, set, function
1690 
1691 .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetPicard(), SNESFunction
1692 @*/
1693 PetscErrorCode  SNESSetFunction(SNES snes,Vec r,PetscErrorCode (*f)(SNES,Vec,Vec,void*),void *ctx)
1694 {
1695   PetscErrorCode ierr;
1696   DM             dm;
1697 
1698   PetscFunctionBegin;
1699   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1700   if (r) {
1701     PetscValidHeaderSpecific(r,VEC_CLASSID,2);
1702     PetscCheckSameComm(snes,1,r,2);
1703     ierr = PetscObjectReference((PetscObject)r);CHKERRQ(ierr);
1704     ierr = VecDestroy(&snes->vec_func);CHKERRQ(ierr);
1705 
1706     snes->vec_func = r;
1707   }
1708   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
1709   ierr = DMSNESSetFunction(dm,f,ctx);CHKERRQ(ierr);
1710   PetscFunctionReturn(0);
1711 }
1712 
1713 
1714 /*@C
1715    SNESSetInitialFunction - Sets the function vector to be used as the
1716    function norm at the initialization of the method.  In some
1717    instances, the user has precomputed the function before calling
1718    SNESSolve.  This function allows one to avoid a redundant call
1719    to SNESComputeFunction in that case.
1720 
1721    Logically Collective on SNES
1722 
1723    Input Parameters:
1724 +  snes - the SNES context
1725 -  f - vector to store function value
1726 
1727    Notes:
1728    This should not be modified during the solution procedure.
1729 
1730    This is used extensively in the SNESFAS hierarchy and in nonlinear preconditioning.
1731 
1732    Level: developer
1733 
1734 .keywords: SNES, nonlinear, set, function
1735 
1736 .seealso: SNESSetFunction(), SNESComputeFunction(), SNESSetInitialFunctionNorm()
1737 @*/
1738 PetscErrorCode  SNESSetInitialFunction(SNES snes, Vec f)
1739 {
1740   PetscErrorCode ierr;
1741   Vec            vec_func;
1742 
1743   PetscFunctionBegin;
1744   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1745   PetscValidHeaderSpecific(f,VEC_CLASSID,2);
1746   PetscCheckSameComm(snes,1,f,2);
1747   if (snes->npcside== PC_LEFT && snes->functype == SNES_FUNCTION_PRECONDITIONED) {
1748     snes->vec_func_init_set = PETSC_FALSE;
1749     PetscFunctionReturn(0);
1750   }
1751   ierr = SNESGetFunction(snes,&vec_func,NULL,NULL);CHKERRQ(ierr);
1752   ierr = VecCopy(f, vec_func);CHKERRQ(ierr);
1753 
1754   snes->vec_func_init_set = PETSC_TRUE;
1755   PetscFunctionReturn(0);
1756 }
1757 
1758 /*@
1759    SNESSetNormSchedule - Sets the SNESNormSchedule used in covergence and monitoring
1760    of the SNES method.
1761 
1762    Logically Collective on SNES
1763 
1764    Input Parameters:
1765 +  snes - the SNES context
1766 -  normschedule - the frequency of norm computation
1767 
1768    Options Database Key:
1769 .  -snes_norm_schedule <none, always, initialonly, finalonly, initalfinalonly>
1770 
1771    Notes:
1772    Only certain SNES methods support certain SNESNormSchedules.  Most require evaluation
1773    of the nonlinear function and the taking of its norm at every iteration to
1774    even ensure convergence at all.  However, methods such as custom Gauss-Seidel methods
1775    (SNESNGS) and the like do not require the norm of the function to be computed, and therfore
1776    may either be monitored for convergence or not.  As these are often used as nonlinear
1777    preconditioners, monitoring the norm of their error is not a useful enterprise within
1778    their solution.
1779 
1780    Level: developer
1781 
1782 .keywords: SNES, nonlinear, set, function, norm, type
1783 
1784 .seealso: SNESGetNormSchedule(), SNESComputeFunction(), VecNorm(), SNESSetFunction(), SNESSetInitialFunction(), SNESNormSchedule
1785 @*/
1786 PetscErrorCode  SNESSetNormSchedule(SNES snes, SNESNormSchedule normschedule)
1787 {
1788   PetscFunctionBegin;
1789   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1790   snes->normschedule = normschedule;
1791   PetscFunctionReturn(0);
1792 }
1793 
1794 
1795 /*@
1796    SNESGetNormSchedule - Gets the SNESNormSchedule used in covergence and monitoring
1797    of the SNES method.
1798 
1799    Logically Collective on SNES
1800 
1801    Input Parameters:
1802 +  snes - the SNES context
1803 -  normschedule - the type of the norm used
1804 
1805    Level: advanced
1806 
1807 .keywords: SNES, nonlinear, set, function, norm, type
1808 
1809 .seealso: SNESSetNormSchedule(), SNESComputeFunction(), VecNorm(), SNESSetFunction(), SNESSetInitialFunction(), SNESNormSchedule
1810 @*/
1811 PetscErrorCode  SNESGetNormSchedule(SNES snes, SNESNormSchedule *normschedule)
1812 {
1813   PetscFunctionBegin;
1814   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1815   *normschedule = snes->normschedule;
1816   PetscFunctionReturn(0);
1817 }
1818 
1819 
1820 /*@
1821   SNESSetFunctionNorm - Sets the last computed residual norm.
1822 
1823   Logically Collective on SNES
1824 
1825   Input Parameters:
1826 + snes - the SNES context
1827 
1828 - normschedule - the frequency of norm computation
1829 
1830   Level: developer
1831 
1832 .keywords: SNES, nonlinear, set, function, norm, type
1833 .seealso: SNESGetNormSchedule(), SNESComputeFunction(), VecNorm(), SNESSetFunction(), SNESSetInitialFunction(), SNESNormSchedule
1834 @*/
1835 PetscErrorCode SNESSetFunctionNorm(SNES snes, PetscReal norm)
1836 {
1837   PetscFunctionBegin;
1838   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1839   snes->norm = norm;
1840   PetscFunctionReturn(0);
1841 }
1842 
1843 /*@
1844   SNESGetFunctionNorm - Gets the last computed norm of the residual
1845 
1846   Not Collective
1847 
1848   Input Parameter:
1849 . snes - the SNES context
1850 
1851   Output Parameter:
1852 . norm - the last computed residual norm
1853 
1854   Level: developer
1855 
1856 .keywords: SNES, nonlinear, set, function, norm, type
1857 .seealso: SNESSetNormSchedule(), SNESComputeFunction(), VecNorm(), SNESSetFunction(), SNESSetInitialFunction(), SNESNormSchedule
1858 @*/
1859 PetscErrorCode SNESGetFunctionNorm(SNES snes, PetscReal *norm)
1860 {
1861   PetscFunctionBegin;
1862   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1863   PetscValidPointer(norm, 2);
1864   *norm = snes->norm;
1865   PetscFunctionReturn(0);
1866 }
1867 
1868 /*@C
1869    SNESSetFunctionType - Sets the SNESNormSchedule used in covergence and monitoring
1870    of the SNES method.
1871 
1872    Logically Collective on SNES
1873 
1874    Input Parameters:
1875 +  snes - the SNES context
1876 -  normschedule - the frequency of norm computation
1877 
1878    Notes:
1879    Only certain SNES methods support certain SNESNormSchedules.  Most require evaluation
1880    of the nonlinear function and the taking of its norm at every iteration to
1881    even ensure convergence at all.  However, methods such as custom Gauss-Seidel methods
1882    (SNESNGS) and the like do not require the norm of the function to be computed, and therfore
1883    may either be monitored for convergence or not.  As these are often used as nonlinear
1884    preconditioners, monitoring the norm of their error is not a useful enterprise within
1885    their solution.
1886 
1887    Level: developer
1888 
1889 .keywords: SNES, nonlinear, set, function, norm, type
1890 
1891 .seealso: SNESGetNormSchedule(), SNESComputeFunction(), VecNorm(), SNESSetFunction(), SNESSetInitialFunction(), SNESNormSchedule
1892 @*/
1893 PetscErrorCode  SNESSetFunctionType(SNES snes, SNESFunctionType type)
1894 {
1895   PetscFunctionBegin;
1896   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1897   snes->functype = type;
1898   PetscFunctionReturn(0);
1899 }
1900 
1901 
1902 /*@C
1903    SNESGetFunctionType - Gets the SNESNormSchedule used in covergence and monitoring
1904    of the SNES method.
1905 
1906    Logically Collective on SNES
1907 
1908    Input Parameters:
1909 +  snes - the SNES context
1910 -  normschedule - the type of the norm used
1911 
1912    Level: advanced
1913 
1914 .keywords: SNES, nonlinear, set, function, norm, type
1915 
1916 .seealso: SNESSetNormSchedule(), SNESComputeFunction(), VecNorm(), SNESSetFunction(), SNESSetInitialFunction(), SNESNormSchedule
1917 @*/
1918 PetscErrorCode  SNESGetFunctionType(SNES snes, SNESFunctionType *type)
1919 {
1920   PetscFunctionBegin;
1921   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1922   *type = snes->functype;
1923   PetscFunctionReturn(0);
1924 }
1925 
1926 /*MC
1927     SNESNGSFunction - function used to convey a Gauss-Seidel sweep on the nonlinear function
1928 
1929      Synopsis:
1930      #include <petscsnes.h>
1931 $    SNESNGSFunction(SNES snes,Vec x,Vec b,void *ctx);
1932 
1933 +  X   - solution vector
1934 .  B   - RHS vector
1935 -  ctx - optional user-defined Gauss-Seidel context
1936 
1937    Level: intermediate
1938 
1939 .seealso:   SNESSetNGS(), SNESGetNGS()
1940 M*/
1941 
1942 /*@C
1943    SNESSetNGS - Sets the user nonlinear Gauss-Seidel routine for
1944    use with composed nonlinear solvers.
1945 
1946    Input Parameters:
1947 +  snes   - the SNES context
1948 .  f - function evaluation routine to apply Gauss-Seidel see SNESNGSFunction
1949 -  ctx    - [optional] user-defined context for private data for the
1950             smoother evaluation routine (may be NULL)
1951 
1952    Notes:
1953    The NGS routines are used by the composed nonlinear solver to generate
1954     a problem appropriate update to the solution, particularly FAS.
1955 
1956    Level: intermediate
1957 
1958 .keywords: SNES, nonlinear, set, Gauss-Seidel
1959 
1960 .seealso: SNESGetFunction(), SNESComputeNGS()
1961 @*/
1962 PetscErrorCode SNESSetNGS(SNES snes,PetscErrorCode (*f)(SNES,Vec,Vec,void*),void *ctx)
1963 {
1964   PetscErrorCode ierr;
1965   DM             dm;
1966 
1967   PetscFunctionBegin;
1968   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1969   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
1970   ierr = DMSNESSetNGS(dm,f,ctx);CHKERRQ(ierr);
1971   PetscFunctionReturn(0);
1972 }
1973 
1974 PETSC_EXTERN PetscErrorCode SNESPicardComputeFunction(SNES snes,Vec x,Vec f,void *ctx)
1975 {
1976   PetscErrorCode ierr;
1977   DM             dm;
1978   DMSNES         sdm;
1979 
1980   PetscFunctionBegin;
1981   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
1982   ierr = DMGetDMSNES(dm,&sdm);CHKERRQ(ierr);
1983   /*  A(x)*x - b(x) */
1984   if (sdm->ops->computepfunction) {
1985     ierr = (*sdm->ops->computepfunction)(snes,x,f,sdm->pctx);CHKERRQ(ierr);
1986   } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE, "Must call SNESSetPicard() to provide Picard function.");
1987 
1988   if (sdm->ops->computepjacobian) {
1989     ierr = (*sdm->ops->computepjacobian)(snes,x,snes->jacobian,snes->jacobian_pre,sdm->pctx);CHKERRQ(ierr);
1990   } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE, "Must call SNESSetPicard() to provide Picard matrix.");
1991   ierr = VecScale(f,-1.0);CHKERRQ(ierr);
1992   ierr = MatMultAdd(snes->jacobian,x,f,f);CHKERRQ(ierr);
1993   PetscFunctionReturn(0);
1994 }
1995 
1996 PETSC_EXTERN PetscErrorCode SNESPicardComputeJacobian(SNES snes,Vec x1,Mat J,Mat B,void *ctx)
1997 {
1998   PetscFunctionBegin;
1999   /* the jacobian matrix should be pre-filled in SNESPicardComputeFunction */
2000   PetscFunctionReturn(0);
2001 }
2002 
2003 /*@C
2004    SNESSetPicard - Use SNES to solve the semilinear-system A(x) x = b(x) via a Picard type iteration (Picard linearization)
2005 
2006    Logically Collective on SNES
2007 
2008    Input Parameters:
2009 +  snes - the SNES context
2010 .  r - vector to store function value
2011 .  b - function evaluation routine
2012 .  Amat - matrix with which A(x) x - b(x) is to be computed
2013 .  Pmat - matrix from which preconditioner is computed (usually the same as Amat)
2014 .  J  - function to compute matrix value, see SNESJacobianFunction for details on its calling sequence
2015 -  ctx - [optional] user-defined context for private data for the
2016          function evaluation routine (may be NULL)
2017 
2018    Notes:
2019     We do not recomemend using this routine. It is far better to provide the nonlinear function F() and some approximation to the Jacobian and use
2020     an approximate Newton solver. This interface is provided to allow porting/testing a previous Picard based code in PETSc before converting it to approximate Newton.
2021 
2022     One can call SNESSetPicard() or SNESSetFunction() (and possibly SNESSetJacobian()) but cannot call both
2023 
2024 $     Solves the equation A(x) x = b(x) via the defect correction algorithm A(x^{n}) (x^{n+1} - x^{n}) = b(x^{n}) - A(x^{n})x^{n}
2025 $     Note that when an exact solver is used this corresponds to the "classic" Picard A(x^{n}) x^{n+1} = b(x^{n}) iteration.
2026 
2027      Run with -snes_mf_operator to solve the system with Newton's method using A(x^{n}) to construct the preconditioner.
2028 
2029    We implement the defect correction form of the Picard iteration because it converges much more generally when inexact linear solvers are used then
2030    the direct Picard iteration A(x^n) x^{n+1} = b(x^n)
2031 
2032    There is some controversity over the definition of a Picard iteration for nonlinear systems but almost everyone agrees that it involves a linear solve and some
2033    believe it is the iteration  A(x^{n}) x^{n+1} = b(x^{n}) hence we use the name Picard. If anyone has an authoritative  reference that defines the Picard iteration
2034    different please contact us at petsc-dev@mcs.anl.gov and we'll have an entirely new argument :-).
2035 
2036    Level: intermediate
2037 
2038 .keywords: SNES, nonlinear, set, function
2039 
2040 .seealso: SNESGetFunction(), SNESSetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESGetPicard(), SNESLineSearchPreCheckPicard(), SNESJacobianFunction
2041 @*/
2042 PetscErrorCode  SNESSetPicard(SNES snes,Vec r,PetscErrorCode (*b)(SNES,Vec,Vec,void*),Mat Amat, Mat Pmat, PetscErrorCode (*J)(SNES,Vec,Mat,Mat,void*),void *ctx)
2043 {
2044   PetscErrorCode ierr;
2045   DM             dm;
2046 
2047   PetscFunctionBegin;
2048   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2049   ierr = SNESGetDM(snes, &dm);CHKERRQ(ierr);
2050   ierr = DMSNESSetPicard(dm,b,J,ctx);CHKERRQ(ierr);
2051   ierr = SNESSetFunction(snes,r,SNESPicardComputeFunction,ctx);CHKERRQ(ierr);
2052   ierr = SNESSetJacobian(snes,Amat,Pmat,SNESPicardComputeJacobian,ctx);CHKERRQ(ierr);
2053   PetscFunctionReturn(0);
2054 }
2055 
2056 /*@C
2057    SNESGetPicard - Returns the context for the Picard iteration
2058 
2059    Not Collective, but Vec is parallel if SNES is parallel. Collective if Vec is requested, but has not been created yet.
2060 
2061    Input Parameter:
2062 .  snes - the SNES context
2063 
2064    Output Parameter:
2065 +  r - the function (or NULL)
2066 .  f - the function (or NULL); see SNESFunction for calling sequence details
2067 .  Amat - the matrix used to defined the operation A(x) x - b(x) (or NULL)
2068 .  Pmat  - the matrix from which the preconditioner will be constructed (or NULL)
2069 .  J - the function for matrix evaluation (or NULL); see SNESJacobianFunction for calling sequence details
2070 -  ctx - the function context (or NULL)
2071 
2072    Level: advanced
2073 
2074 .keywords: SNES, nonlinear, get, function
2075 
2076 .seealso: SNESSetPicard(), SNESGetFunction(), SNESGetJacobian(), SNESGetDM(), SNESFunction, SNESJacobianFunction
2077 @*/
2078 PetscErrorCode  SNESGetPicard(SNES snes,Vec *r,PetscErrorCode (**f)(SNES,Vec,Vec,void*),Mat *Amat, Mat *Pmat, PetscErrorCode (**J)(SNES,Vec,Mat,Mat,void*),void **ctx)
2079 {
2080   PetscErrorCode ierr;
2081   DM             dm;
2082 
2083   PetscFunctionBegin;
2084   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2085   ierr = SNESGetFunction(snes,r,NULL,NULL);CHKERRQ(ierr);
2086   ierr = SNESGetJacobian(snes,Amat,Pmat,NULL,NULL);CHKERRQ(ierr);
2087   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
2088   ierr = DMSNESGetPicard(dm,f,J,ctx);CHKERRQ(ierr);
2089   PetscFunctionReturn(0);
2090 }
2091 
2092 /*@C
2093    SNESSetComputeInitialGuess - Sets a routine used to compute an initial guess for the problem
2094 
2095    Logically Collective on SNES
2096 
2097    Input Parameters:
2098 +  snes - the SNES context
2099 .  func - function evaluation routine
2100 -  ctx - [optional] user-defined context for private data for the
2101          function evaluation routine (may be NULL)
2102 
2103    Calling sequence of func:
2104 $    func (SNES snes,Vec x,void *ctx);
2105 
2106 .  f - function vector
2107 -  ctx - optional user-defined function context
2108 
2109    Level: intermediate
2110 
2111 .keywords: SNES, nonlinear, set, function
2112 
2113 .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian()
2114 @*/
2115 PetscErrorCode  SNESSetComputeInitialGuess(SNES snes,PetscErrorCode (*func)(SNES,Vec,void*),void *ctx)
2116 {
2117   PetscFunctionBegin;
2118   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2119   if (func) snes->ops->computeinitialguess = func;
2120   if (ctx)  snes->initialguessP            = ctx;
2121   PetscFunctionReturn(0);
2122 }
2123 
2124 /* --------------------------------------------------------------- */
2125 /*@C
2126    SNESGetRhs - Gets the vector for solving F(x) = rhs. If rhs is not set
2127    it assumes a zero right hand side.
2128 
2129    Logically Collective on SNES
2130 
2131    Input Parameter:
2132 .  snes - the SNES context
2133 
2134    Output Parameter:
2135 .  rhs - the right hand side vector or NULL if the right hand side vector is null
2136 
2137    Level: intermediate
2138 
2139 .keywords: SNES, nonlinear, get, function, right hand side
2140 
2141 .seealso: SNESGetSolution(), SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetFunction()
2142 @*/
2143 PetscErrorCode  SNESGetRhs(SNES snes,Vec *rhs)
2144 {
2145   PetscFunctionBegin;
2146   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2147   PetscValidPointer(rhs,2);
2148   *rhs = snes->vec_rhs;
2149   PetscFunctionReturn(0);
2150 }
2151 
2152 /*@
2153    SNESComputeFunction - Calls the function that has been set with SNESSetFunction().
2154 
2155    Collective on SNES
2156 
2157    Input Parameters:
2158 +  snes - the SNES context
2159 -  x - input vector
2160 
2161    Output Parameter:
2162 .  y - function vector, as set by SNESSetFunction()
2163 
2164    Notes:
2165    SNESComputeFunction() is typically used within nonlinear solvers
2166    implementations, so most users would not generally call this routine
2167    themselves.
2168 
2169    Level: developer
2170 
2171 .keywords: SNES, nonlinear, compute, function
2172 
2173 .seealso: SNESSetFunction(), SNESGetFunction()
2174 @*/
2175 PetscErrorCode  SNESComputeFunction(SNES snes,Vec x,Vec y)
2176 {
2177   PetscErrorCode ierr;
2178   DM             dm;
2179   DMSNES         sdm;
2180 
2181   PetscFunctionBegin;
2182   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2183   PetscValidHeaderSpecific(x,VEC_CLASSID,2);
2184   PetscValidHeaderSpecific(y,VEC_CLASSID,3);
2185   PetscCheckSameComm(snes,1,x,2);
2186   PetscCheckSameComm(snes,1,y,3);
2187   ierr = VecValidValues(x,2,PETSC_TRUE);CHKERRQ(ierr);
2188 
2189   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
2190   ierr = DMGetDMSNES(dm,&sdm);CHKERRQ(ierr);
2191   if (sdm->ops->computefunction) {
2192     if (sdm->ops->computefunction != SNESObjectiveComputeFunctionDefaultFD) {
2193       ierr = PetscLogEventBegin(SNES_FunctionEval,snes,x,y,0);CHKERRQ(ierr);
2194     }
2195     ierr = VecLockPush(x);CHKERRQ(ierr);
2196     PetscStackPush("SNES user function");
2197     ierr = (*sdm->ops->computefunction)(snes,x,y,sdm->functionctx);CHKERRQ(ierr);
2198     PetscStackPop;
2199     ierr = VecLockPop(x);CHKERRQ(ierr);
2200     if (sdm->ops->computefunction != SNESObjectiveComputeFunctionDefaultFD) {
2201       ierr = PetscLogEventEnd(SNES_FunctionEval,snes,x,y,0);CHKERRQ(ierr);
2202     }
2203   } else if (snes->vec_rhs) {
2204     ierr = MatMult(snes->jacobian, x, y);CHKERRQ(ierr);
2205   } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE, "Must call SNESSetFunction() or SNESSetDM() before SNESComputeFunction(), likely called from SNESSolve().");
2206   if (snes->vec_rhs) {
2207     ierr = VecAXPY(y,-1.0,snes->vec_rhs);CHKERRQ(ierr);
2208   }
2209   snes->nfuncs++;
2210   /*
2211      domainerror might not be set on all processes; so we tag vector locally with Inf and the next inner product or norm will
2212      propagate the value to all processes
2213   */
2214   if (snes->domainerror) {
2215     ierr = VecSetInf(y);CHKERRQ(ierr);
2216   }
2217   PetscFunctionReturn(0);
2218 }
2219 
2220 /*@
2221    SNESComputeNGS - Calls the Gauss-Seidel function that has been set with  SNESSetNGS().
2222 
2223    Collective on SNES
2224 
2225    Input Parameters:
2226 +  snes - the SNES context
2227 .  x - input vector
2228 -  b - rhs vector
2229 
2230    Output Parameter:
2231 .  x - new solution vector
2232 
2233    Notes:
2234    SNESComputeNGS() is typically used within composed nonlinear solver
2235    implementations, so most users would not generally call this routine
2236    themselves.
2237 
2238    Level: developer
2239 
2240 .keywords: SNES, nonlinear, compute, function
2241 
2242 .seealso: SNESSetNGS(), SNESComputeFunction()
2243 @*/
2244 PetscErrorCode  SNESComputeNGS(SNES snes,Vec b,Vec x)
2245 {
2246   PetscErrorCode ierr;
2247   DM             dm;
2248   DMSNES         sdm;
2249 
2250   PetscFunctionBegin;
2251   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2252   PetscValidHeaderSpecific(x,VEC_CLASSID,2);
2253   if (b) PetscValidHeaderSpecific(b,VEC_CLASSID,3);
2254   PetscCheckSameComm(snes,1,x,2);
2255   if (b) PetscCheckSameComm(snes,1,b,3);
2256   if (b) {ierr = VecValidValues(b,2,PETSC_TRUE);CHKERRQ(ierr);}
2257   ierr = PetscLogEventBegin(SNES_NGSEval,snes,x,b,0);CHKERRQ(ierr);
2258   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
2259   ierr = DMGetDMSNES(dm,&sdm);CHKERRQ(ierr);
2260   if (sdm->ops->computegs) {
2261     if (b) {ierr = VecLockPush(b);CHKERRQ(ierr);}
2262     PetscStackPush("SNES user NGS");
2263     ierr = (*sdm->ops->computegs)(snes,x,b,sdm->gsctx);CHKERRQ(ierr);
2264     PetscStackPop;
2265     if (b) {ierr = VecLockPop(b);CHKERRQ(ierr);}
2266   } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE, "Must call SNESSetNGS() before SNESComputeNGS(), likely called from SNESSolve().");
2267   ierr = PetscLogEventEnd(SNES_NGSEval,snes,x,b,0);CHKERRQ(ierr);
2268   PetscFunctionReturn(0);
2269 }
2270 
2271 /*@
2272    SNESComputeJacobian - Computes the Jacobian matrix that has been set with SNESSetJacobian().
2273 
2274    Collective on SNES and Mat
2275 
2276    Input Parameters:
2277 +  snes - the SNES context
2278 -  x - input vector
2279 
2280    Output Parameters:
2281 +  A - Jacobian matrix
2282 -  B - optional preconditioning matrix
2283 
2284   Options Database Keys:
2285 +    -snes_lag_preconditioner <lag>
2286 .    -snes_lag_jacobian <lag>
2287 .    -snes_compare_explicit - Compare the computed Jacobian to the finite difference Jacobian and output the differences
2288 .    -snes_compare_explicit_draw  - Compare the computed Jacobian to the finite difference Jacobian and draw the result
2289 .    -snes_compare_explicit_contour  - Compare the computed Jacobian to the finite difference Jacobian and draw a contour plot with the result
2290 .    -snes_compare_operator  - Make the comparison options above use the operator instead of the preconditioning matrix
2291 .    -snes_compare_coloring - Compute the finite difference Jacobian using coloring and display norms of difference
2292 .    -snes_compare_coloring_display - Compute the finite differece Jacobian using coloring and display verbose differences
2293 .    -snes_compare_coloring_threshold - Display only those matrix entries that differ by more than a given threshold
2294 .    -snes_compare_coloring_threshold_atol - Absolute tolerance for difference in matrix entries to be displayed by -snes_compare_coloring_threshold
2295 .    -snes_compare_coloring_threshold_rtol - Relative tolerance for difference in matrix entries to be displayed by -snes_compare_coloring_threshold
2296 .    -snes_compare_coloring_draw - Compute the finite differece Jacobian using coloring and draw differences
2297 -    -snes_compare_coloring_draw_contour - Compute the finite differece Jacobian using coloring and show contours of matrices and differences
2298 
2299 
2300    Notes:
2301    Most users should not need to explicitly call this routine, as it
2302    is used internally within the nonlinear solvers.
2303 
2304    Level: developer
2305 
2306 .keywords: SNES, compute, Jacobian, matrix
2307 
2308 .seealso:  SNESSetJacobian(), KSPSetOperators(), MatStructure, SNESSetLagPreconditioner(), SNESSetLagJacobian()
2309 @*/
2310 PetscErrorCode  SNESComputeJacobian(SNES snes,Vec X,Mat A,Mat B)
2311 {
2312   PetscErrorCode ierr;
2313   PetscBool      flag;
2314   DM             dm;
2315   DMSNES         sdm;
2316   KSP            ksp;
2317 
2318   PetscFunctionBegin;
2319   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2320   PetscValidHeaderSpecific(X,VEC_CLASSID,2);
2321   PetscCheckSameComm(snes,1,X,2);
2322   ierr = VecValidValues(X,2,PETSC_TRUE);CHKERRQ(ierr);
2323   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
2324   ierr = DMGetDMSNES(dm,&sdm);CHKERRQ(ierr);
2325 
2326   if (!sdm->ops->computejacobian) SETERRQ(PetscObjectComm((PetscObject)snes),PETSC_ERR_USER,"Must call SNESSetJacobian(), DMSNESSetJacobian(), DMDASNESSetJacobianLocal(), etc");
2327 
2328   /* make sure that MatAssemblyBegin/End() is called on A matrix if it is matrix free */
2329 
2330   if (snes->lagjacobian == -2) {
2331     snes->lagjacobian = -1;
2332 
2333     ierr = PetscInfo(snes,"Recomputing Jacobian/preconditioner because lag is -2 (means compute Jacobian, but then never again) \n");CHKERRQ(ierr);
2334   } else if (snes->lagjacobian == -1) {
2335     ierr = PetscInfo(snes,"Reusing Jacobian/preconditioner because lag is -1\n");CHKERRQ(ierr);
2336     ierr = PetscObjectTypeCompare((PetscObject)A,MATMFFD,&flag);CHKERRQ(ierr);
2337     if (flag) {
2338       ierr = MatAssemblyBegin(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2339       ierr = MatAssemblyEnd(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2340     }
2341     PetscFunctionReturn(0);
2342   } else if (snes->lagjacobian > 1 && (snes->iter + snes->jac_iter) % snes->lagjacobian) {
2343     ierr = PetscInfo2(snes,"Reusing Jacobian/preconditioner because lag is %D and SNES iteration is %D\n",snes->lagjacobian,snes->iter);CHKERRQ(ierr);
2344     ierr = PetscObjectTypeCompare((PetscObject)A,MATMFFD,&flag);CHKERRQ(ierr);
2345     if (flag) {
2346       ierr = MatAssemblyBegin(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2347       ierr = MatAssemblyEnd(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2348     }
2349     PetscFunctionReturn(0);
2350   }
2351   if (snes->npc && snes->npcside== PC_LEFT) {
2352       ierr = MatAssemblyBegin(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2353       ierr = MatAssemblyEnd(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2354       PetscFunctionReturn(0);
2355   }
2356 
2357   ierr = PetscLogEventBegin(SNES_JacobianEval,snes,X,A,B);CHKERRQ(ierr);
2358   ierr = VecLockPush(X);CHKERRQ(ierr);
2359   PetscStackPush("SNES user Jacobian function");
2360   ierr = (*sdm->ops->computejacobian)(snes,X,A,B,sdm->jacobianctx);CHKERRQ(ierr);
2361   PetscStackPop;
2362   ierr = VecLockPop(X);CHKERRQ(ierr);
2363   ierr = PetscLogEventEnd(SNES_JacobianEval,snes,X,A,B);CHKERRQ(ierr);
2364 
2365   /* the next line ensures that snes->ksp exists */
2366   ierr = SNESGetKSP(snes,&ksp);CHKERRQ(ierr);
2367   if (snes->lagpreconditioner == -2) {
2368     ierr = PetscInfo(snes,"Rebuilding preconditioner exactly once since lag is -2\n");CHKERRQ(ierr);
2369     ierr = KSPSetReusePreconditioner(snes->ksp,PETSC_FALSE);CHKERRQ(ierr);
2370     snes->lagpreconditioner = -1;
2371   } else if (snes->lagpreconditioner == -1) {
2372     ierr = PetscInfo(snes,"Reusing preconditioner because lag is -1\n");CHKERRQ(ierr);
2373     ierr = KSPSetReusePreconditioner(snes->ksp,PETSC_TRUE);CHKERRQ(ierr);
2374   } else if (snes->lagpreconditioner > 1 && (snes->iter + snes->pre_iter) % snes->lagpreconditioner) {
2375     ierr = PetscInfo2(snes,"Reusing preconditioner because lag is %D and SNES iteration is %D\n",snes->lagpreconditioner,snes->iter);CHKERRQ(ierr);
2376     ierr = KSPSetReusePreconditioner(snes->ksp,PETSC_TRUE);CHKERRQ(ierr);
2377   } else {
2378     ierr = PetscInfo(snes,"Rebuilding preconditioner\n");CHKERRQ(ierr);
2379     ierr = KSPSetReusePreconditioner(snes->ksp,PETSC_FALSE);CHKERRQ(ierr);
2380   }
2381 
2382   /* make sure user returned a correct Jacobian and preconditioner */
2383   /* PetscValidHeaderSpecific(A,MAT_CLASSID,3);
2384     PetscValidHeaderSpecific(B,MAT_CLASSID,4);   */
2385   {
2386     PetscBool flag = PETSC_FALSE,flag_draw = PETSC_FALSE,flag_contour = PETSC_FALSE,flag_operator = PETSC_FALSE;
2387     ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_compare_explicit",NULL,NULL,&flag);CHKERRQ(ierr);
2388     ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_compare_explicit_draw",NULL,NULL,&flag_draw);CHKERRQ(ierr);
2389     ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_compare_explicit_draw_contour",NULL,NULL,&flag_contour);CHKERRQ(ierr);
2390     ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_compare_operator",NULL,NULL,&flag_operator);CHKERRQ(ierr);
2391     if (flag || flag_draw || flag_contour) {
2392       Mat          Bexp_mine = NULL,Bexp,FDexp;
2393       PetscViewer  vdraw,vstdout;
2394       PetscBool    flg;
2395       if (flag_operator) {
2396         ierr = MatComputeExplicitOperator(A,&Bexp_mine);CHKERRQ(ierr);
2397         Bexp = Bexp_mine;
2398       } else {
2399         /* See if the preconditioning matrix can be viewed and added directly */
2400         ierr = PetscObjectTypeCompareAny((PetscObject)B,&flg,MATSEQAIJ,MATMPIAIJ,MATSEQDENSE,MATMPIDENSE,MATSEQBAIJ,MATMPIBAIJ,MATSEQSBAIJ,MATMPIBAIJ,"");CHKERRQ(ierr);
2401         if (flg) Bexp = B;
2402         else {
2403           /* If the "preconditioning" matrix is itself MATSHELL or some other type without direct support */
2404           ierr = MatComputeExplicitOperator(B,&Bexp_mine);CHKERRQ(ierr);
2405           Bexp = Bexp_mine;
2406         }
2407       }
2408       ierr = MatConvert(Bexp,MATSAME,MAT_INITIAL_MATRIX,&FDexp);CHKERRQ(ierr);
2409       ierr = SNESComputeJacobianDefault(snes,X,FDexp,FDexp,NULL);CHKERRQ(ierr);
2410       ierr = PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject)snes),&vstdout);CHKERRQ(ierr);
2411       if (flag_draw || flag_contour) {
2412         ierr = PetscViewerDrawOpen(PetscObjectComm((PetscObject)snes),0,"Explicit Jacobians",PETSC_DECIDE,PETSC_DECIDE,300,300,&vdraw);CHKERRQ(ierr);
2413         if (flag_contour) {ierr = PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR);CHKERRQ(ierr);}
2414       } else vdraw = NULL;
2415       ierr = PetscViewerASCIIPrintf(vstdout,"Explicit %s\n",flag_operator ? "Jacobian" : "preconditioning Jacobian");CHKERRQ(ierr);
2416       if (flag) {ierr = MatView(Bexp,vstdout);CHKERRQ(ierr);}
2417       if (vdraw) {ierr = MatView(Bexp,vdraw);CHKERRQ(ierr);}
2418       ierr = PetscViewerASCIIPrintf(vstdout,"Finite difference Jacobian\n");CHKERRQ(ierr);
2419       if (flag) {ierr = MatView(FDexp,vstdout);CHKERRQ(ierr);}
2420       if (vdraw) {ierr = MatView(FDexp,vdraw);CHKERRQ(ierr);}
2421       ierr = MatAYPX(FDexp,-1.0,Bexp,SAME_NONZERO_PATTERN);CHKERRQ(ierr);
2422       ierr = PetscViewerASCIIPrintf(vstdout,"User-provided matrix minus finite difference Jacobian\n");CHKERRQ(ierr);
2423       if (flag) {ierr = MatView(FDexp,vstdout);CHKERRQ(ierr);}
2424       if (vdraw) {              /* Always use contour for the difference */
2425         ierr = PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR);CHKERRQ(ierr);
2426         ierr = MatView(FDexp,vdraw);CHKERRQ(ierr);
2427         ierr = PetscViewerPopFormat(vdraw);CHKERRQ(ierr);
2428       }
2429       if (flag_contour) {ierr = PetscViewerPopFormat(vdraw);CHKERRQ(ierr);}
2430       ierr = PetscViewerDestroy(&vdraw);CHKERRQ(ierr);
2431       ierr = MatDestroy(&Bexp_mine);CHKERRQ(ierr);
2432       ierr = MatDestroy(&FDexp);CHKERRQ(ierr);
2433     }
2434   }
2435   {
2436     PetscBool flag = PETSC_FALSE,flag_display = PETSC_FALSE,flag_draw = PETSC_FALSE,flag_contour = PETSC_FALSE,flag_threshold = PETSC_FALSE;
2437     PetscReal threshold_atol = PETSC_SQRT_MACHINE_EPSILON,threshold_rtol = 10*PETSC_SQRT_MACHINE_EPSILON;
2438     ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_compare_coloring",NULL,NULL,&flag);CHKERRQ(ierr);
2439     ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_compare_coloring_display",NULL,NULL,&flag_display);CHKERRQ(ierr);
2440     ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_compare_coloring_draw",NULL,NULL,&flag_draw);CHKERRQ(ierr);
2441     ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_compare_coloring_draw_contour",NULL,NULL,&flag_contour);CHKERRQ(ierr);
2442     ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_compare_coloring_threshold",NULL,NULL,&flag_threshold);CHKERRQ(ierr);
2443     if (flag_threshold) {
2444       ierr = PetscOptionsGetReal(((PetscObject)snes)->options,((PetscObject)snes)->prefix,"-snes_compare_coloring_threshold_rtol",&threshold_rtol,NULL);CHKERRQ(ierr);
2445       ierr = PetscOptionsGetReal(((PetscObject)snes)->options,((PetscObject)snes)->prefix,"-snes_compare_coloring_threshold_atol",&threshold_atol,NULL);CHKERRQ(ierr);
2446     }
2447     if (flag || flag_display || flag_draw || flag_contour || flag_threshold) {
2448       Mat            Bfd;
2449       PetscViewer    vdraw,vstdout;
2450       MatColoring    coloring;
2451       ISColoring     iscoloring;
2452       MatFDColoring  matfdcoloring;
2453       PetscErrorCode (*func)(SNES,Vec,Vec,void*);
2454       void           *funcctx;
2455       PetscReal      norm1,norm2,normmax;
2456 
2457       ierr = MatDuplicate(B,MAT_DO_NOT_COPY_VALUES,&Bfd);CHKERRQ(ierr);
2458       ierr = MatColoringCreate(Bfd,&coloring);CHKERRQ(ierr);
2459       ierr = MatColoringSetType(coloring,MATCOLORINGSL);CHKERRQ(ierr);
2460       ierr = MatColoringSetFromOptions(coloring);CHKERRQ(ierr);
2461       ierr = MatColoringApply(coloring,&iscoloring);CHKERRQ(ierr);
2462       ierr = MatColoringDestroy(&coloring);CHKERRQ(ierr);
2463       ierr = MatFDColoringCreate(Bfd,iscoloring,&matfdcoloring);CHKERRQ(ierr);
2464       ierr = MatFDColoringSetFromOptions(matfdcoloring);CHKERRQ(ierr);
2465       ierr = MatFDColoringSetUp(Bfd,iscoloring,matfdcoloring);CHKERRQ(ierr);
2466       ierr = ISColoringDestroy(&iscoloring);CHKERRQ(ierr);
2467 
2468       /* This method of getting the function is currently unreliable since it doesn't work for DM local functions. */
2469       ierr = SNESGetFunction(snes,NULL,&func,&funcctx);CHKERRQ(ierr);
2470       ierr = MatFDColoringSetFunction(matfdcoloring,(PetscErrorCode (*)(void))func,funcctx);CHKERRQ(ierr);
2471       ierr = PetscObjectSetOptionsPrefix((PetscObject)matfdcoloring,((PetscObject)snes)->prefix);CHKERRQ(ierr);
2472       ierr = PetscObjectAppendOptionsPrefix((PetscObject)matfdcoloring,"coloring_");CHKERRQ(ierr);
2473       ierr = MatFDColoringSetFromOptions(matfdcoloring);CHKERRQ(ierr);
2474       ierr = MatFDColoringApply(Bfd,matfdcoloring,X,snes);CHKERRQ(ierr);
2475       ierr = MatFDColoringDestroy(&matfdcoloring);CHKERRQ(ierr);
2476 
2477       ierr = PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject)snes),&vstdout);CHKERRQ(ierr);
2478       if (flag_draw || flag_contour) {
2479         ierr = PetscViewerDrawOpen(PetscObjectComm((PetscObject)snes),0,"Colored Jacobians",PETSC_DECIDE,PETSC_DECIDE,300,300,&vdraw);CHKERRQ(ierr);
2480         if (flag_contour) {ierr = PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR);CHKERRQ(ierr);}
2481       } else vdraw = NULL;
2482       ierr = PetscViewerASCIIPrintf(vstdout,"Explicit preconditioning Jacobian\n");CHKERRQ(ierr);
2483       if (flag_display) {ierr = MatView(B,vstdout);CHKERRQ(ierr);}
2484       if (vdraw) {ierr = MatView(B,vdraw);CHKERRQ(ierr);}
2485       ierr = PetscViewerASCIIPrintf(vstdout,"Colored Finite difference Jacobian\n");CHKERRQ(ierr);
2486       if (flag_display) {ierr = MatView(Bfd,vstdout);CHKERRQ(ierr);}
2487       if (vdraw) {ierr = MatView(Bfd,vdraw);CHKERRQ(ierr);}
2488       ierr = MatAYPX(Bfd,-1.0,B,SAME_NONZERO_PATTERN);CHKERRQ(ierr);
2489       ierr = MatNorm(Bfd,NORM_1,&norm1);CHKERRQ(ierr);
2490       ierr = MatNorm(Bfd,NORM_FROBENIUS,&norm2);CHKERRQ(ierr);
2491       ierr = MatNorm(Bfd,NORM_MAX,&normmax);CHKERRQ(ierr);
2492       ierr = PetscViewerASCIIPrintf(vstdout,"User-provided matrix minus finite difference Jacobian, norm1=%g normFrob=%g normmax=%g\n",(double)norm1,(double)norm2,(double)normmax);CHKERRQ(ierr);
2493       if (flag_display) {ierr = MatView(Bfd,vstdout);CHKERRQ(ierr);}
2494       if (vdraw) {              /* Always use contour for the difference */
2495         ierr = PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR);CHKERRQ(ierr);
2496         ierr = MatView(Bfd,vdraw);CHKERRQ(ierr);
2497         ierr = PetscViewerPopFormat(vdraw);CHKERRQ(ierr);
2498       }
2499       if (flag_contour) {ierr = PetscViewerPopFormat(vdraw);CHKERRQ(ierr);}
2500 
2501       if (flag_threshold) {
2502         PetscInt bs,rstart,rend,i;
2503         ierr = MatGetBlockSize(B,&bs);CHKERRQ(ierr);
2504         ierr = MatGetOwnershipRange(B,&rstart,&rend);CHKERRQ(ierr);
2505         for (i=rstart; i<rend; i++) {
2506           const PetscScalar *ba,*ca;
2507           const PetscInt    *bj,*cj;
2508           PetscInt          bn,cn,j,maxentrycol = -1,maxdiffcol = -1,maxrdiffcol = -1;
2509           PetscReal         maxentry = 0,maxdiff = 0,maxrdiff = 0;
2510           ierr = MatGetRow(B,i,&bn,&bj,&ba);CHKERRQ(ierr);
2511           ierr = MatGetRow(Bfd,i,&cn,&cj,&ca);CHKERRQ(ierr);
2512           if (bn != cn) SETERRQ(((PetscObject)A)->comm,PETSC_ERR_PLIB,"Unexpected different nonzero pattern in -snes_compare_coloring_threshold");
2513           for (j=0; j<bn; j++) {
2514             PetscReal rdiff = PetscAbsScalar(ca[j]) / (threshold_atol + threshold_rtol*PetscAbsScalar(ba[j]));
2515             if (PetscAbsScalar(ba[j]) > PetscAbs(maxentry)) {
2516               maxentrycol = bj[j];
2517               maxentry    = PetscRealPart(ba[j]);
2518             }
2519             if (PetscAbsScalar(ca[j]) > PetscAbs(maxdiff)) {
2520               maxdiffcol = bj[j];
2521               maxdiff    = PetscRealPart(ca[j]);
2522             }
2523             if (rdiff > maxrdiff) {
2524               maxrdiffcol = bj[j];
2525               maxrdiff    = rdiff;
2526             }
2527           }
2528           if (maxrdiff > 1) {
2529             ierr = PetscViewerASCIIPrintf(vstdout,"row %D (maxentry=%g at %D, maxdiff=%g at %D, maxrdiff=%g at %D):",i,(double)maxentry,maxentrycol,(double)maxdiff,maxdiffcol,(double)maxrdiff,maxrdiffcol);CHKERRQ(ierr);
2530             for (j=0; j<bn; j++) {
2531               PetscReal rdiff;
2532               rdiff = PetscAbsScalar(ca[j]) / (threshold_atol + threshold_rtol*PetscAbsScalar(ba[j]));
2533               if (rdiff > 1) {
2534                 ierr = PetscViewerASCIIPrintf(vstdout," (%D,%g:%g)",bj[j],(double)PetscRealPart(ba[j]),(double)PetscRealPart(ca[j]));CHKERRQ(ierr);
2535               }
2536             }
2537             ierr = PetscViewerASCIIPrintf(vstdout,"\n",i,maxentry,maxdiff,maxrdiff);CHKERRQ(ierr);
2538           }
2539           ierr = MatRestoreRow(B,i,&bn,&bj,&ba);CHKERRQ(ierr);
2540           ierr = MatRestoreRow(Bfd,i,&cn,&cj,&ca);CHKERRQ(ierr);
2541         }
2542       }
2543       ierr = PetscViewerDestroy(&vdraw);CHKERRQ(ierr);
2544       ierr = MatDestroy(&Bfd);CHKERRQ(ierr);
2545     }
2546   }
2547   PetscFunctionReturn(0);
2548 }
2549 
2550 /*MC
2551     SNESJacobianFunction - Function used to convey the nonlinear Jacobian of the function to be solved by SNES
2552 
2553      Synopsis:
2554      #include "petscsnes.h"
2555      PetscErrorCode SNESJacobianFunction(SNES snes,Vec x,Mat Amat,Mat Pmat,void *ctx);
2556 
2557 +  x - input vector
2558 .  Amat - the matrix that defines the (approximate) Jacobian
2559 .  Pmat - the matrix to be used in constructing the preconditioner, usually the same as Amat.
2560 -  ctx - [optional] user-defined Jacobian context
2561 
2562    Level: intermediate
2563 
2564 .seealso:   SNESSetFunction(), SNESGetFunction(), SNESSetJacobian(), SNESGetJacobian()
2565 M*/
2566 
2567 /*@C
2568    SNESSetJacobian - Sets the function to compute Jacobian as well as the
2569    location to store the matrix.
2570 
2571    Logically Collective on SNES and Mat
2572 
2573    Input Parameters:
2574 +  snes - the SNES context
2575 .  Amat - the matrix that defines the (approximate) Jacobian
2576 .  Pmat - the matrix to be used in constructing the preconditioner, usually the same as Amat.
2577 .  J - Jacobian evaluation routine (if NULL then SNES retains any previously set value), see SNESJacobianFunction for details
2578 -  ctx - [optional] user-defined context for private data for the
2579          Jacobian evaluation routine (may be NULL) (if NULL then SNES retains any previously set value)
2580 
2581    Notes:
2582    If the Amat matrix and Pmat matrix are different you must call MatAssemblyBegin/End() on
2583    each matrix.
2584 
2585    If you know the operator Amat has a null space you can use MatSetNullSpace() and MatSetTransposeNullSpace() to supply the null
2586    space to Amat and the KSP solvers will automatically use that null space as needed during the solution process.
2587 
2588    If using SNESComputeJacobianDefaultColor() to assemble a Jacobian, the ctx argument
2589    must be a MatFDColoring.
2590 
2591    Other defect-correction schemes can be used by computing a different matrix in place of the Jacobian.  One common
2592    example is to use the "Picard linearization" which only differentiates through the highest order parts of each term.
2593 
2594    Level: beginner
2595 
2596 .keywords: SNES, nonlinear, set, Jacobian, matrix
2597 
2598 .seealso: KSPSetOperators(), SNESSetFunction(), MatMFFDComputeJacobian(), SNESComputeJacobianDefaultColor(), MatStructure, J,
2599           SNESSetPicard(), SNESJacobianFunction
2600 @*/
2601 PetscErrorCode  SNESSetJacobian(SNES snes,Mat Amat,Mat Pmat,PetscErrorCode (*J)(SNES,Vec,Mat,Mat,void*),void *ctx)
2602 {
2603   PetscErrorCode ierr;
2604   DM             dm;
2605 
2606   PetscFunctionBegin;
2607   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2608   if (Amat) PetscValidHeaderSpecific(Amat,MAT_CLASSID,2);
2609   if (Pmat) PetscValidHeaderSpecific(Pmat,MAT_CLASSID,3);
2610   if (Amat) PetscCheckSameComm(snes,1,Amat,2);
2611   if (Pmat) PetscCheckSameComm(snes,1,Pmat,3);
2612   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
2613   ierr = DMSNESSetJacobian(dm,J,ctx);CHKERRQ(ierr);
2614   if (Amat) {
2615     ierr = PetscObjectReference((PetscObject)Amat);CHKERRQ(ierr);
2616     ierr = MatDestroy(&snes->jacobian);CHKERRQ(ierr);
2617 
2618     snes->jacobian = Amat;
2619   }
2620   if (Pmat) {
2621     ierr = PetscObjectReference((PetscObject)Pmat);CHKERRQ(ierr);
2622     ierr = MatDestroy(&snes->jacobian_pre);CHKERRQ(ierr);
2623 
2624     snes->jacobian_pre = Pmat;
2625   }
2626   PetscFunctionReturn(0);
2627 }
2628 
2629 /*@C
2630    SNESGetJacobian - Returns the Jacobian matrix and optionally the user
2631    provided context for evaluating the Jacobian.
2632 
2633    Not Collective, but Mat object will be parallel if SNES object is
2634 
2635    Input Parameter:
2636 .  snes - the nonlinear solver context
2637 
2638    Output Parameters:
2639 +  Amat - location to stash (approximate) Jacobian matrix (or NULL)
2640 .  Pmat - location to stash matrix used to compute the preconditioner (or NULL)
2641 .  J - location to put Jacobian function (or NULL), see SNESJacobianFunction for details on its calling sequence
2642 -  ctx - location to stash Jacobian ctx (or NULL)
2643 
2644    Level: advanced
2645 
2646 .seealso: SNESSetJacobian(), SNESComputeJacobian(), SNESJacobianFunction, SNESGetFunction()
2647 @*/
2648 PetscErrorCode SNESGetJacobian(SNES snes,Mat *Amat,Mat *Pmat,PetscErrorCode (**J)(SNES,Vec,Mat,Mat,void*),void **ctx)
2649 {
2650   PetscErrorCode ierr;
2651   DM             dm;
2652   DMSNES         sdm;
2653 
2654   PetscFunctionBegin;
2655   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2656   if (Amat) *Amat = snes->jacobian;
2657   if (Pmat) *Pmat = snes->jacobian_pre;
2658   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
2659   ierr = DMGetDMSNES(dm,&sdm);CHKERRQ(ierr);
2660   if (J) *J = sdm->ops->computejacobian;
2661   if (ctx) *ctx = sdm->jacobianctx;
2662   PetscFunctionReturn(0);
2663 }
2664 
2665 /*@
2666    SNESSetUp - Sets up the internal data structures for the later use
2667    of a nonlinear solver.
2668 
2669    Collective on SNES
2670 
2671    Input Parameters:
2672 .  snes - the SNES context
2673 
2674    Notes:
2675    For basic use of the SNES solvers the user need not explicitly call
2676    SNESSetUp(), since these actions will automatically occur during
2677    the call to SNESSolve().  However, if one wishes to control this
2678    phase separately, SNESSetUp() should be called after SNESCreate()
2679    and optional routines of the form SNESSetXXX(), but before SNESSolve().
2680 
2681    Level: advanced
2682 
2683 .keywords: SNES, nonlinear, setup
2684 
2685 .seealso: SNESCreate(), SNESSolve(), SNESDestroy()
2686 @*/
2687 PetscErrorCode  SNESSetUp(SNES snes)
2688 {
2689   PetscErrorCode ierr;
2690   DM             dm;
2691   DMSNES         sdm;
2692   SNESLineSearch linesearch, pclinesearch;
2693   void           *lsprectx,*lspostctx;
2694   PetscErrorCode (*precheck)(SNESLineSearch,Vec,Vec,PetscBool*,void*);
2695   PetscErrorCode (*postcheck)(SNESLineSearch,Vec,Vec,Vec,PetscBool*,PetscBool*,void*);
2696   PetscErrorCode (*func)(SNES,Vec,Vec,void*);
2697   Vec            f,fpc;
2698   void           *funcctx;
2699   PetscErrorCode (*jac)(SNES,Vec,Mat,Mat,void*);
2700   void           *jacctx,*appctx;
2701   Mat            j,jpre;
2702 
2703   PetscFunctionBegin;
2704   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2705   if (snes->setupcalled) PetscFunctionReturn(0);
2706 
2707   if (!((PetscObject)snes)->type_name) {
2708     ierr = SNESSetType(snes,SNESNEWTONLS);CHKERRQ(ierr);
2709   }
2710 
2711   ierr = SNESGetFunction(snes,&snes->vec_func,NULL,NULL);CHKERRQ(ierr);
2712 
2713   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
2714   ierr = DMGetDMSNES(dm,&sdm);CHKERRQ(ierr);
2715   if (!sdm->ops->computefunction) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_ARG_WRONGSTATE,"Function never provided to SNES object");
2716   if (!sdm->ops->computejacobian) {
2717     ierr = DMSNESSetJacobian(dm,SNESComputeJacobianDefaultColor,NULL);CHKERRQ(ierr);
2718   }
2719   if (!snes->vec_func) {
2720     ierr = DMCreateGlobalVector(dm,&snes->vec_func);CHKERRQ(ierr);
2721   }
2722 
2723   if (!snes->ksp) {
2724     ierr = SNESGetKSP(snes, &snes->ksp);CHKERRQ(ierr);
2725   }
2726 
2727   if (!snes->linesearch) {
2728     ierr = SNESGetLineSearch(snes, &snes->linesearch);CHKERRQ(ierr);
2729   }
2730   ierr = SNESLineSearchSetFunction(snes->linesearch,SNESComputeFunction);CHKERRQ(ierr);
2731 
2732   if (snes->npc && (snes->npcside== PC_LEFT)) {
2733     snes->mf          = PETSC_TRUE;
2734     snes->mf_operator = PETSC_FALSE;
2735   }
2736 
2737   if (snes->npc) {
2738     /* copy the DM over */
2739     ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
2740     ierr = SNESSetDM(snes->npc,dm);CHKERRQ(ierr);
2741 
2742     ierr = SNESGetFunction(snes,&f,&func,&funcctx);CHKERRQ(ierr);
2743     ierr = VecDuplicate(f,&fpc);CHKERRQ(ierr);
2744     ierr = SNESSetFunction(snes->npc,fpc,func,funcctx);CHKERRQ(ierr);
2745     ierr = SNESGetJacobian(snes,&j,&jpre,&jac,&jacctx);CHKERRQ(ierr);
2746     ierr = SNESSetJacobian(snes->npc,j,jpre,jac,jacctx);CHKERRQ(ierr);
2747     ierr = SNESGetApplicationContext(snes,&appctx);CHKERRQ(ierr);
2748     ierr = SNESSetApplicationContext(snes->npc,appctx);CHKERRQ(ierr);
2749     ierr = VecDestroy(&fpc);CHKERRQ(ierr);
2750 
2751     /* copy the function pointers over */
2752     ierr = PetscObjectCopyFortranFunctionPointers((PetscObject)snes,(PetscObject)snes->npc);CHKERRQ(ierr);
2753 
2754     /* default to 1 iteration */
2755     ierr = SNESSetTolerances(snes->npc,0.0,0.0,0.0,1,snes->npc->max_funcs);CHKERRQ(ierr);
2756     if (snes->npcside==PC_RIGHT) {
2757       ierr = SNESSetNormSchedule(snes->npc,SNES_NORM_FINAL_ONLY);CHKERRQ(ierr);
2758     } else {
2759       ierr = SNESSetNormSchedule(snes->npc,SNES_NORM_NONE);CHKERRQ(ierr);
2760     }
2761     ierr = SNESSetFromOptions(snes->npc);CHKERRQ(ierr);
2762 
2763     /* copy the line search context over */
2764     ierr = SNESGetLineSearch(snes,&linesearch);CHKERRQ(ierr);
2765     ierr = SNESGetLineSearch(snes->npc,&pclinesearch);CHKERRQ(ierr);
2766     ierr = SNESLineSearchGetPreCheck(linesearch,&precheck,&lsprectx);CHKERRQ(ierr);
2767     ierr = SNESLineSearchGetPostCheck(linesearch,&postcheck,&lspostctx);CHKERRQ(ierr);
2768     ierr = SNESLineSearchSetPreCheck(pclinesearch,precheck,lsprectx);CHKERRQ(ierr);
2769     ierr = SNESLineSearchSetPostCheck(pclinesearch,postcheck,lspostctx);CHKERRQ(ierr);
2770     ierr = PetscObjectCopyFortranFunctionPointers((PetscObject)linesearch, (PetscObject)pclinesearch);CHKERRQ(ierr);
2771   }
2772   if (snes->mf) {
2773     ierr = SNESSetUpMatrixFree_Private(snes, snes->mf_operator, snes->mf_version);CHKERRQ(ierr);
2774   }
2775   if (snes->ops->usercompute && !snes->user) {
2776     ierr = (*snes->ops->usercompute)(snes,(void**)&snes->user);CHKERRQ(ierr);
2777   }
2778 
2779   snes->jac_iter = 0;
2780   snes->pre_iter = 0;
2781 
2782   if (snes->ops->setup) {
2783     ierr = (*snes->ops->setup)(snes);CHKERRQ(ierr);
2784   }
2785 
2786   if (snes->npc && (snes->npcside== PC_LEFT)) {
2787     if (snes->functype == SNES_FUNCTION_PRECONDITIONED) {
2788       ierr = SNESGetLineSearch(snes,&linesearch);CHKERRQ(ierr);
2789       ierr = SNESLineSearchSetFunction(linesearch,SNESComputeFunctionDefaultNPC);CHKERRQ(ierr);
2790     }
2791   }
2792 
2793   snes->setupcalled = PETSC_TRUE;
2794   PetscFunctionReturn(0);
2795 }
2796 
2797 /*@
2798    SNESReset - Resets a SNES context to the snessetupcalled = 0 state and removes any allocated Vecs and Mats
2799 
2800    Collective on SNES
2801 
2802    Input Parameter:
2803 .  snes - iterative context obtained from SNESCreate()
2804 
2805    Level: intermediate
2806 
2807    Notes: Also calls the application context destroy routine set with SNESSetComputeApplicationContext()
2808 
2809 .keywords: SNES, destroy
2810 
2811 .seealso: SNESCreate(), SNESSetUp(), SNESSolve()
2812 @*/
2813 PetscErrorCode  SNESReset(SNES snes)
2814 {
2815   PetscErrorCode ierr;
2816 
2817   PetscFunctionBegin;
2818   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2819   if (snes->ops->userdestroy && snes->user) {
2820     ierr       = (*snes->ops->userdestroy)((void**)&snes->user);CHKERRQ(ierr);
2821     snes->user = NULL;
2822   }
2823   if (snes->npc) {
2824     ierr = SNESReset(snes->npc);CHKERRQ(ierr);
2825   }
2826 
2827   if (snes->ops->reset) {
2828     ierr = (*snes->ops->reset)(snes);CHKERRQ(ierr);
2829   }
2830   if (snes->ksp) {
2831     ierr = KSPReset(snes->ksp);CHKERRQ(ierr);
2832   }
2833 
2834   if (snes->linesearch) {
2835     ierr = SNESLineSearchReset(snes->linesearch);CHKERRQ(ierr);
2836   }
2837 
2838   ierr = VecDestroy(&snes->vec_rhs);CHKERRQ(ierr);
2839   ierr = VecDestroy(&snes->vec_sol);CHKERRQ(ierr);
2840   ierr = VecDestroy(&snes->vec_sol_update);CHKERRQ(ierr);
2841   ierr = VecDestroy(&snes->vec_func);CHKERRQ(ierr);
2842   ierr = MatDestroy(&snes->jacobian);CHKERRQ(ierr);
2843   ierr = MatDestroy(&snes->jacobian_pre);CHKERRQ(ierr);
2844   ierr = VecDestroyVecs(snes->nwork,&snes->work);CHKERRQ(ierr);
2845   ierr = VecDestroyVecs(snes->nvwork,&snes->vwork);CHKERRQ(ierr);
2846 
2847   snes->alwayscomputesfinalresidual = PETSC_FALSE;
2848 
2849   snes->nwork       = snes->nvwork = 0;
2850   snes->setupcalled = PETSC_FALSE;
2851   PetscFunctionReturn(0);
2852 }
2853 
2854 /*@
2855    SNESDestroy - Destroys the nonlinear solver context that was created
2856    with SNESCreate().
2857 
2858    Collective on SNES
2859 
2860    Input Parameter:
2861 .  snes - the SNES context
2862 
2863    Level: beginner
2864 
2865 .keywords: SNES, nonlinear, destroy
2866 
2867 .seealso: SNESCreate(), SNESSolve()
2868 @*/
2869 PetscErrorCode  SNESDestroy(SNES *snes)
2870 {
2871   PetscErrorCode ierr;
2872 
2873   PetscFunctionBegin;
2874   if (!*snes) PetscFunctionReturn(0);
2875   PetscValidHeaderSpecific((*snes),SNES_CLASSID,1);
2876   if (--((PetscObject)(*snes))->refct > 0) {*snes = 0; PetscFunctionReturn(0);}
2877 
2878   ierr = SNESReset((*snes));CHKERRQ(ierr);
2879   ierr = SNESDestroy(&(*snes)->npc);CHKERRQ(ierr);
2880 
2881   /* if memory was published with SAWs then destroy it */
2882   ierr = PetscObjectSAWsViewOff((PetscObject)*snes);CHKERRQ(ierr);
2883   if ((*snes)->ops->destroy) {ierr = (*((*snes))->ops->destroy)((*snes));CHKERRQ(ierr);}
2884 
2885   ierr = DMCoarsenHookRemove((*snes)->dm,DMCoarsenHook_SNESVecSol,DMRestrictHook_SNESVecSol,*snes);CHKERRQ(ierr);
2886   ierr = DMDestroy(&(*snes)->dm);CHKERRQ(ierr);
2887   ierr = KSPDestroy(&(*snes)->ksp);CHKERRQ(ierr);
2888   ierr = SNESLineSearchDestroy(&(*snes)->linesearch);CHKERRQ(ierr);
2889 
2890   ierr = PetscFree((*snes)->kspconvctx);CHKERRQ(ierr);
2891   if ((*snes)->ops->convergeddestroy) {
2892     ierr = (*(*snes)->ops->convergeddestroy)((*snes)->cnvP);CHKERRQ(ierr);
2893   }
2894   if ((*snes)->conv_malloc) {
2895     ierr = PetscFree((*snes)->conv_hist);CHKERRQ(ierr);
2896     ierr = PetscFree((*snes)->conv_hist_its);CHKERRQ(ierr);
2897   }
2898   ierr = SNESMonitorCancel((*snes));CHKERRQ(ierr);
2899   ierr = PetscHeaderDestroy(snes);CHKERRQ(ierr);
2900   PetscFunctionReturn(0);
2901 }
2902 
2903 /* ----------- Routines to set solver parameters ---------- */
2904 
2905 /*@
2906    SNESSetLagPreconditioner - Determines when the preconditioner is rebuilt in the nonlinear solve.
2907 
2908    Logically Collective on SNES
2909 
2910    Input Parameters:
2911 +  snes - the SNES context
2912 -  lag - -1 indicates NEVER rebuild, 1 means rebuild every time the Jacobian is computed within a single nonlinear solve, 2 means every second time
2913          the Jacobian is built etc. -2 indicates rebuild preconditioner at next chance but then never rebuild after that
2914 
2915    Options Database Keys:
2916 .    -snes_lag_preconditioner <lag>
2917 
2918    Notes:
2919    The default is 1
2920    The preconditioner is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1
2921    If  -1 is used before the very first nonlinear solve the preconditioner is still built because there is no previous preconditioner to use
2922 
2923    Level: intermediate
2924 
2925 .keywords: SNES, nonlinear, set, convergence, tolerances
2926 
2927 .seealso: SNESSetTrustRegionTolerance(), SNESGetLagPreconditioner(), SNESSetLagJacobian(), SNESGetLagJacobian()
2928 
2929 @*/
2930 PetscErrorCode  SNESSetLagPreconditioner(SNES snes,PetscInt lag)
2931 {
2932   PetscFunctionBegin;
2933   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2934   if (lag < -2) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag must be -2, -1, 1 or greater");
2935   if (!lag) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag cannot be 0");
2936   PetscValidLogicalCollectiveInt(snes,lag,2);
2937   snes->lagpreconditioner = lag;
2938   PetscFunctionReturn(0);
2939 }
2940 
2941 /*@
2942    SNESSetGridSequence - sets the number of steps of grid sequencing that SNES does
2943 
2944    Logically Collective on SNES
2945 
2946    Input Parameters:
2947 +  snes - the SNES context
2948 -  steps - the number of refinements to do, defaults to 0
2949 
2950    Options Database Keys:
2951 .    -snes_grid_sequence <steps>
2952 
2953    Level: intermediate
2954 
2955    Notes:
2956    Use SNESGetSolution() to extract the fine grid solution after grid sequencing.
2957 
2958 .keywords: SNES, nonlinear, set, convergence, tolerances
2959 
2960 .seealso: SNESSetTrustRegionTolerance(), SNESGetLagPreconditioner(), SNESSetLagJacobian(), SNESGetLagJacobian(), SNESGetGridSequence()
2961 
2962 @*/
2963 PetscErrorCode  SNESSetGridSequence(SNES snes,PetscInt steps)
2964 {
2965   PetscFunctionBegin;
2966   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2967   PetscValidLogicalCollectiveInt(snes,steps,2);
2968   snes->gridsequence = steps;
2969   PetscFunctionReturn(0);
2970 }
2971 
2972 /*@
2973    SNESGetGridSequence - gets the number of steps of grid sequencing that SNES does
2974 
2975    Logically Collective on SNES
2976 
2977    Input Parameter:
2978 .  snes - the SNES context
2979 
2980    Output Parameter:
2981 .  steps - the number of refinements to do, defaults to 0
2982 
2983    Options Database Keys:
2984 .    -snes_grid_sequence <steps>
2985 
2986    Level: intermediate
2987 
2988    Notes:
2989    Use SNESGetSolution() to extract the fine grid solution after grid sequencing.
2990 
2991 .keywords: SNES, nonlinear, set, convergence, tolerances
2992 
2993 .seealso: SNESSetTrustRegionTolerance(), SNESGetLagPreconditioner(), SNESSetLagJacobian(), SNESGetLagJacobian(), SNESSetGridSequence()
2994 
2995 @*/
2996 PetscErrorCode  SNESGetGridSequence(SNES snes,PetscInt *steps)
2997 {
2998   PetscFunctionBegin;
2999   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3000   *steps = snes->gridsequence;
3001   PetscFunctionReturn(0);
3002 }
3003 
3004 /*@
3005    SNESGetLagPreconditioner - Indicates how often the preconditioner is rebuilt
3006 
3007    Not Collective
3008 
3009    Input Parameter:
3010 .  snes - the SNES context
3011 
3012    Output Parameter:
3013 .   lag - -1 indicates NEVER rebuild, 1 means rebuild every time the Jacobian is computed within a single nonlinear solve, 2 means every second time
3014          the Jacobian is built etc. -2 indicates rebuild preconditioner at next chance but then never rebuild after that
3015 
3016    Options Database Keys:
3017 .    -snes_lag_preconditioner <lag>
3018 
3019    Notes:
3020    The default is 1
3021    The preconditioner is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1
3022 
3023    Level: intermediate
3024 
3025 .keywords: SNES, nonlinear, set, convergence, tolerances
3026 
3027 .seealso: SNESSetTrustRegionTolerance(), SNESSetLagPreconditioner()
3028 
3029 @*/
3030 PetscErrorCode  SNESGetLagPreconditioner(SNES snes,PetscInt *lag)
3031 {
3032   PetscFunctionBegin;
3033   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3034   *lag = snes->lagpreconditioner;
3035   PetscFunctionReturn(0);
3036 }
3037 
3038 /*@
3039    SNESSetLagJacobian - Determines when the Jacobian is rebuilt in the nonlinear solve. See SNESSetLagPreconditioner() for determining how
3040      often the preconditioner is rebuilt.
3041 
3042    Logically Collective on SNES
3043 
3044    Input Parameters:
3045 +  snes - the SNES context
3046 -  lag - -1 indicates NEVER rebuild, 1 means rebuild every time the Jacobian is computed within a single nonlinear solve, 2 means every second time
3047          the Jacobian is built etc. -2 means rebuild at next chance but then never again
3048 
3049    Options Database Keys:
3050 .    -snes_lag_jacobian <lag>
3051 
3052    Notes:
3053    The default is 1
3054    The Jacobian is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1
3055    If  -1 is used before the very first nonlinear solve the CODE WILL FAIL! because no Jacobian is used, use -2 to indicate you want it recomputed
3056    at the next Newton step but never again (unless it is reset to another value)
3057 
3058    Level: intermediate
3059 
3060 .keywords: SNES, nonlinear, set, convergence, tolerances
3061 
3062 .seealso: SNESSetTrustRegionTolerance(), SNESGetLagPreconditioner(), SNESSetLagPreconditioner(), SNESGetLagJacobian()
3063 
3064 @*/
3065 PetscErrorCode  SNESSetLagJacobian(SNES snes,PetscInt lag)
3066 {
3067   PetscFunctionBegin;
3068   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3069   if (lag < -2) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag must be -2, -1, 1 or greater");
3070   if (!lag) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag cannot be 0");
3071   PetscValidLogicalCollectiveInt(snes,lag,2);
3072   snes->lagjacobian = lag;
3073   PetscFunctionReturn(0);
3074 }
3075 
3076 /*@
3077    SNESGetLagJacobian - Indicates how often the Jacobian is rebuilt. See SNESGetLagPreconditioner() to determine when the preconditioner is rebuilt
3078 
3079    Not Collective
3080 
3081    Input Parameter:
3082 .  snes - the SNES context
3083 
3084    Output Parameter:
3085 .   lag - -1 indicates NEVER rebuild, 1 means rebuild every time the Jacobian is computed within a single nonlinear solve, 2 means every second time
3086          the Jacobian is built etc.
3087 
3088    Options Database Keys:
3089 .    -snes_lag_jacobian <lag>
3090 
3091    Notes:
3092    The default is 1
3093    The jacobian is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1
3094 
3095    Level: intermediate
3096 
3097 .keywords: SNES, nonlinear, set, convergence, tolerances
3098 
3099 .seealso: SNESSetTrustRegionTolerance(), SNESSetLagJacobian(), SNESSetLagPreconditioner(), SNESGetLagPreconditioner()
3100 
3101 @*/
3102 PetscErrorCode  SNESGetLagJacobian(SNES snes,PetscInt *lag)
3103 {
3104   PetscFunctionBegin;
3105   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3106   *lag = snes->lagjacobian;
3107   PetscFunctionReturn(0);
3108 }
3109 
3110 /*@
3111    SNESSetLagJacobianPersists - Set whether or not the Jacobian lagging persists through multiple solves
3112 
3113    Logically collective on SNES
3114 
3115    Input Parameter:
3116 +  snes - the SNES context
3117 -   flg - jacobian lagging persists if true
3118 
3119    Options Database Keys:
3120 .    -snes_lag_jacobian_persists <flg>
3121 
3122    Notes: This is useful both for nonlinear preconditioning, where it's appropriate to have the Jacobian be stale by
3123    several solves, and for implicit time-stepping, where Jacobian lagging in the inner nonlinear solve over several
3124    timesteps may present huge efficiency gains.
3125 
3126    Level: developer
3127 
3128 .keywords: SNES, nonlinear, lag
3129 
3130 .seealso: SNESSetLagPreconditionerPersists(), SNESSetLagJacobian(), SNESGetLagJacobian(), SNESGetNPC()
3131 
3132 @*/
3133 PetscErrorCode  SNESSetLagJacobianPersists(SNES snes,PetscBool flg)
3134 {
3135   PetscFunctionBegin;
3136   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3137   PetscValidLogicalCollectiveBool(snes,flg,2);
3138   snes->lagjac_persist = flg;
3139   PetscFunctionReturn(0);
3140 }
3141 
3142 /*@
3143    SNESSetLagPreconditionerPersists - Set whether or not the preconditioner lagging persists through multiple solves
3144 
3145    Logically Collective on SNES
3146 
3147    Input Parameter:
3148 +  snes - the SNES context
3149 -   flg - preconditioner lagging persists if true
3150 
3151    Options Database Keys:
3152 .    -snes_lag_jacobian_persists <flg>
3153 
3154    Notes: This is useful both for nonlinear preconditioning, where it's appropriate to have the preconditioner be stale
3155    by several solves, and for implicit time-stepping, where preconditioner lagging in the inner nonlinear solve over
3156    several timesteps may present huge efficiency gains.
3157 
3158    Level: developer
3159 
3160 .keywords: SNES, nonlinear, lag
3161 
3162 .seealso: SNESSetLagJacobianPersists(), SNESSetLagJacobian(), SNESGetLagJacobian(), SNESGetNPC()
3163 
3164 @*/
3165 PetscErrorCode  SNESSetLagPreconditionerPersists(SNES snes,PetscBool flg)
3166 {
3167   PetscFunctionBegin;
3168   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3169   PetscValidLogicalCollectiveBool(snes,flg,2);
3170   snes->lagpre_persist = flg;
3171   PetscFunctionReturn(0);
3172 }
3173 
3174 /*@
3175    SNESSetForceIteration - force SNESSolve() to take at least one iteration regardless of the initial residual norm
3176 
3177    Logically Collective on SNES
3178 
3179    Input Parameters:
3180 +  snes - the SNES context
3181 -  force - PETSC_TRUE require at least one iteration
3182 
3183    Options Database Keys:
3184 .    -snes_force_iteration <force> - Sets forcing an iteration
3185 
3186    Notes:
3187    This is used sometimes with TS to prevent TS from detecting a false steady state solution
3188 
3189    Level: intermediate
3190 
3191 .keywords: SNES, nonlinear, set, convergence, tolerances
3192 
3193 .seealso: SNESSetTrustRegionTolerance(), SNESSetDivergenceTolerance()
3194 @*/
3195 PetscErrorCode  SNESSetForceIteration(SNES snes,PetscBool force)
3196 {
3197   PetscFunctionBegin;
3198   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3199   snes->forceiteration = force;
3200   PetscFunctionReturn(0);
3201 }
3202 
3203 
3204 /*@
3205    SNESSetTolerances - Sets various parameters used in convergence tests.
3206 
3207    Logically Collective on SNES
3208 
3209    Input Parameters:
3210 +  snes - the SNES context
3211 .  abstol - absolute convergence tolerance
3212 .  rtol - relative convergence tolerance
3213 .  stol -  convergence tolerance in terms of the norm of the change in the solution between steps,  || delta x || < stol*|| x ||
3214 .  maxit - maximum number of iterations
3215 -  maxf - maximum number of function evaluations
3216 
3217    Options Database Keys:
3218 +    -snes_atol <abstol> - Sets abstol
3219 .    -snes_rtol <rtol> - Sets rtol
3220 .    -snes_stol <stol> - Sets stol
3221 .    -snes_max_it <maxit> - Sets maxit
3222 -    -snes_max_funcs <maxf> - Sets maxf
3223 
3224    Notes:
3225    The default maximum number of iterations is 50.
3226    The default maximum number of function evaluations is 1000.
3227 
3228    Level: intermediate
3229 
3230 .keywords: SNES, nonlinear, set, convergence, tolerances
3231 
3232 .seealso: SNESSetTrustRegionTolerance(), SNESSetDivergenceTolerance(), SNESSetForceIteration()
3233 @*/
3234 PetscErrorCode  SNESSetTolerances(SNES snes,PetscReal abstol,PetscReal rtol,PetscReal stol,PetscInt maxit,PetscInt maxf)
3235 {
3236   PetscFunctionBegin;
3237   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3238   PetscValidLogicalCollectiveReal(snes,abstol,2);
3239   PetscValidLogicalCollectiveReal(snes,rtol,3);
3240   PetscValidLogicalCollectiveReal(snes,stol,4);
3241   PetscValidLogicalCollectiveInt(snes,maxit,5);
3242   PetscValidLogicalCollectiveInt(snes,maxf,6);
3243 
3244   if (abstol != PETSC_DEFAULT) {
3245     if (abstol < 0.0) SETERRQ1(PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_OUTOFRANGE,"Absolute tolerance %g must be non-negative",(double)abstol);
3246     snes->abstol = abstol;
3247   }
3248   if (rtol != PETSC_DEFAULT) {
3249     if (rtol < 0.0 || 1.0 <= rtol) SETERRQ1(PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_OUTOFRANGE,"Relative tolerance %g must be non-negative and less than 1.0",(double)rtol);
3250     snes->rtol = rtol;
3251   }
3252   if (stol != PETSC_DEFAULT) {
3253     if (stol < 0.0) SETERRQ1(PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_OUTOFRANGE,"Step tolerance %g must be non-negative",(double)stol);
3254     snes->stol = stol;
3255   }
3256   if (maxit != PETSC_DEFAULT) {
3257     if (maxit < 0) SETERRQ1(PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_OUTOFRANGE,"Maximum number of iterations %D must be non-negative",maxit);
3258     snes->max_its = maxit;
3259   }
3260   if (maxf != PETSC_DEFAULT) {
3261     if (maxf < 0) SETERRQ1(PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_OUTOFRANGE,"Maximum number of function evaluations %D must be non-negative",maxf);
3262     snes->max_funcs = maxf;
3263   }
3264   snes->tolerancesset = PETSC_TRUE;
3265   PetscFunctionReturn(0);
3266 }
3267 
3268 /*@
3269    SNESSetDivergenceTolerance - Sets the divergence tolerance used for the SNES divergence test.
3270 
3271    Logically Collective on SNES
3272 
3273    Input Parameters:
3274 +  snes - the SNES context
3275 -  divtol - the divergence tolerance. Use -1 to deactivate the test.
3276 
3277    Options Database Keys:
3278 +    -snes_divergence_tolerance <divtol> - Sets divtol
3279 
3280    Notes:
3281    The default divergence tolerance is 1e4.
3282 
3283    Level: intermediate
3284 
3285 .keywords: SNES, nonlinear, set, divergence, tolerance
3286 
3287 .seealso: SNESSetTolerances(), SNESGetDivergenceTolerance
3288 @*/
3289 PetscErrorCode  SNESSetDivergenceTolerance(SNES snes,PetscReal divtol)
3290 {
3291   PetscFunctionBegin;
3292   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3293   PetscValidLogicalCollectiveReal(snes,divtol,2);
3294 
3295   if (divtol != PETSC_DEFAULT) {
3296     snes->divtol = divtol;
3297   }
3298   else {
3299     snes->divtol = 1.0e4;
3300   }
3301   PetscFunctionReturn(0);
3302 }
3303 
3304 /*@
3305    SNESGetTolerances - Gets various parameters used in convergence tests.
3306 
3307    Not Collective
3308 
3309    Input Parameters:
3310 +  snes - the SNES context
3311 .  atol - absolute convergence tolerance
3312 .  rtol - relative convergence tolerance
3313 .  stol -  convergence tolerance in terms of the norm
3314            of the change in the solution between steps
3315 .  maxit - maximum number of iterations
3316 -  maxf - maximum number of function evaluations
3317 
3318    Notes:
3319    The user can specify NULL for any parameter that is not needed.
3320 
3321    Level: intermediate
3322 
3323 .keywords: SNES, nonlinear, get, convergence, tolerances
3324 
3325 .seealso: SNESSetTolerances()
3326 @*/
3327 PetscErrorCode  SNESGetTolerances(SNES snes,PetscReal *atol,PetscReal *rtol,PetscReal *stol,PetscInt *maxit,PetscInt *maxf)
3328 {
3329   PetscFunctionBegin;
3330   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3331   if (atol)  *atol  = snes->abstol;
3332   if (rtol)  *rtol  = snes->rtol;
3333   if (stol)  *stol  = snes->stol;
3334   if (maxit) *maxit = snes->max_its;
3335   if (maxf)  *maxf  = snes->max_funcs;
3336   PetscFunctionReturn(0);
3337 }
3338 
3339 /*@
3340    SNESGetDivergenceTolerance - Gets divergence tolerance used in divergence test.
3341 
3342    Not Collective
3343 
3344    Input Parameters:
3345 +  snes - the SNES context
3346 -  divtol - divergence tolerance
3347 
3348    Level: intermediate
3349 
3350 .keywords: SNES, nonlinear, get, divergence, tolerance
3351 
3352 .seealso: SNESSetDivergenceTolerance()
3353 @*/
3354 PetscErrorCode  SNESGetDivergenceTolerance(SNES snes,PetscReal *divtol)
3355 {
3356   PetscFunctionBegin;
3357   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3358   if (divtol) *divtol = snes->divtol;
3359   PetscFunctionReturn(0);
3360 }
3361 
3362 /*@
3363    SNESSetTrustRegionTolerance - Sets the trust region parameter tolerance.
3364 
3365    Logically Collective on SNES
3366 
3367    Input Parameters:
3368 +  snes - the SNES context
3369 -  tol - tolerance
3370 
3371    Options Database Key:
3372 .  -snes_trtol <tol> - Sets tol
3373 
3374    Level: intermediate
3375 
3376 .keywords: SNES, nonlinear, set, trust region, tolerance
3377 
3378 .seealso: SNESSetTolerances()
3379 @*/
3380 PetscErrorCode  SNESSetTrustRegionTolerance(SNES snes,PetscReal tol)
3381 {
3382   PetscFunctionBegin;
3383   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3384   PetscValidLogicalCollectiveReal(snes,tol,2);
3385   snes->deltatol = tol;
3386   PetscFunctionReturn(0);
3387 }
3388 
3389 /*
3390    Duplicate the lg monitors for SNES from KSP; for some reason with
3391    dynamic libraries things don't work under Sun4 if we just use
3392    macros instead of functions
3393 */
3394 PetscErrorCode  SNESMonitorLGResidualNorm(SNES snes,PetscInt it,PetscReal norm,void *ctx)
3395 {
3396   PetscErrorCode ierr;
3397 
3398   PetscFunctionBegin;
3399   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3400   ierr = KSPMonitorLGResidualNorm((KSP)snes,it,norm,ctx);CHKERRQ(ierr);
3401   PetscFunctionReturn(0);
3402 }
3403 
3404 PetscErrorCode  SNESMonitorLGCreate(MPI_Comm comm,const char host[],const char label[],int x,int y,int m,int n,PetscDrawLG *lgctx)
3405 {
3406   PetscErrorCode ierr;
3407 
3408   PetscFunctionBegin;
3409   ierr = KSPMonitorLGResidualNormCreate(comm,host,label,x,y,m,n,lgctx);CHKERRQ(ierr);
3410   PetscFunctionReturn(0);
3411 }
3412 
3413 PETSC_INTERN PetscErrorCode  SNESMonitorRange_Private(SNES,PetscInt,PetscReal*);
3414 
3415 PetscErrorCode  SNESMonitorLGRange(SNES snes,PetscInt n,PetscReal rnorm,void *monctx)
3416 {
3417   PetscDrawLG      lg;
3418   PetscErrorCode   ierr;
3419   PetscReal        x,y,per;
3420   PetscViewer      v = (PetscViewer)monctx;
3421   static PetscReal prev; /* should be in the context */
3422   PetscDraw        draw;
3423 
3424   PetscFunctionBegin;
3425   PetscValidHeaderSpecific(v,PETSC_VIEWER_CLASSID,4);
3426   ierr = PetscViewerDrawGetDrawLG(v,0,&lg);CHKERRQ(ierr);
3427   if (!n) {ierr = PetscDrawLGReset(lg);CHKERRQ(ierr);}
3428   ierr = PetscDrawLGGetDraw(lg,&draw);CHKERRQ(ierr);
3429   ierr = PetscDrawSetTitle(draw,"Residual norm");CHKERRQ(ierr);
3430   x    = (PetscReal)n;
3431   if (rnorm > 0.0) y = PetscLog10Real(rnorm);
3432   else y = -15.0;
3433   ierr = PetscDrawLGAddPoint(lg,&x,&y);CHKERRQ(ierr);
3434   if (n < 20 || !(n % 5) || snes->reason) {
3435     ierr = PetscDrawLGDraw(lg);CHKERRQ(ierr);
3436     ierr = PetscDrawLGSave(lg);CHKERRQ(ierr);
3437   }
3438 
3439   ierr = PetscViewerDrawGetDrawLG(v,1,&lg);CHKERRQ(ierr);
3440   if (!n) {ierr = PetscDrawLGReset(lg);CHKERRQ(ierr);}
3441   ierr = PetscDrawLGGetDraw(lg,&draw);CHKERRQ(ierr);
3442   ierr = PetscDrawSetTitle(draw,"% elemts > .2*max elemt");CHKERRQ(ierr);
3443   ierr =  SNESMonitorRange_Private(snes,n,&per);CHKERRQ(ierr);
3444   x    = (PetscReal)n;
3445   y    = 100.0*per;
3446   ierr = PetscDrawLGAddPoint(lg,&x,&y);CHKERRQ(ierr);
3447   if (n < 20 || !(n % 5) || snes->reason) {
3448     ierr = PetscDrawLGDraw(lg);CHKERRQ(ierr);
3449     ierr = PetscDrawLGSave(lg);CHKERRQ(ierr);
3450   }
3451 
3452   ierr = PetscViewerDrawGetDrawLG(v,2,&lg);CHKERRQ(ierr);
3453   if (!n) {prev = rnorm;ierr = PetscDrawLGReset(lg);CHKERRQ(ierr);}
3454   ierr = PetscDrawLGGetDraw(lg,&draw);CHKERRQ(ierr);
3455   ierr = PetscDrawSetTitle(draw,"(norm -oldnorm)/oldnorm");CHKERRQ(ierr);
3456   x    = (PetscReal)n;
3457   y    = (prev - rnorm)/prev;
3458   ierr = PetscDrawLGAddPoint(lg,&x,&y);CHKERRQ(ierr);
3459   if (n < 20 || !(n % 5) || snes->reason) {
3460     ierr = PetscDrawLGDraw(lg);CHKERRQ(ierr);
3461     ierr = PetscDrawLGSave(lg);CHKERRQ(ierr);
3462   }
3463 
3464   ierr = PetscViewerDrawGetDrawLG(v,3,&lg);CHKERRQ(ierr);
3465   if (!n) {ierr = PetscDrawLGReset(lg);CHKERRQ(ierr);}
3466   ierr = PetscDrawLGGetDraw(lg,&draw);CHKERRQ(ierr);
3467   ierr = PetscDrawSetTitle(draw,"(norm -oldnorm)/oldnorm*(% > .2 max)");CHKERRQ(ierr);
3468   x    = (PetscReal)n;
3469   y    = (prev - rnorm)/(prev*per);
3470   if (n > 2) { /*skip initial crazy value */
3471     ierr = PetscDrawLGAddPoint(lg,&x,&y);CHKERRQ(ierr);
3472   }
3473   if (n < 20 || !(n % 5) || snes->reason) {
3474     ierr = PetscDrawLGDraw(lg);CHKERRQ(ierr);
3475     ierr = PetscDrawLGSave(lg);CHKERRQ(ierr);
3476   }
3477   prev = rnorm;
3478   PetscFunctionReturn(0);
3479 }
3480 
3481 /*@
3482    SNESMonitor - runs the user provided monitor routines, if they exist
3483 
3484    Collective on SNES
3485 
3486    Input Parameters:
3487 +  snes - nonlinear solver context obtained from SNESCreate()
3488 .  iter - iteration number
3489 -  rnorm - relative norm of the residual
3490 
3491    Notes:
3492    This routine is called by the SNES implementations.
3493    It does not typically need to be called by the user.
3494 
3495    Level: developer
3496 
3497 .seealso: SNESMonitorSet()
3498 @*/
3499 PetscErrorCode  SNESMonitor(SNES snes,PetscInt iter,PetscReal rnorm)
3500 {
3501   PetscErrorCode ierr;
3502   PetscInt       i,n = snes->numbermonitors;
3503 
3504   PetscFunctionBegin;
3505   ierr = VecLockPush(snes->vec_sol);CHKERRQ(ierr);
3506   for (i=0; i<n; i++) {
3507     ierr = (*snes->monitor[i])(snes,iter,rnorm,snes->monitorcontext[i]);CHKERRQ(ierr);
3508   }
3509   ierr = VecLockPop(snes->vec_sol);CHKERRQ(ierr);
3510   PetscFunctionReturn(0);
3511 }
3512 
3513 /* ------------ Routines to set performance monitoring options ----------- */
3514 
3515 /*MC
3516     SNESMonitorFunction - functional form passed to SNESMonitorSet() to monitor convergence of nonlinear solver
3517 
3518      Synopsis:
3519      #include <petscsnes.h>
3520 $    PetscErrorCode SNESMonitorFunction(SNES snes,PetscInt its, PetscReal norm,void *mctx)
3521 
3522 +    snes - the SNES context
3523 .    its - iteration number
3524 .    norm - 2-norm function value (may be estimated)
3525 -    mctx - [optional] monitoring context
3526 
3527    Level: advanced
3528 
3529 .seealso:   SNESMonitorSet(), SNESMonitorGet()
3530 M*/
3531 
3532 /*@C
3533    SNESMonitorSet - Sets an ADDITIONAL function that is to be used at every
3534    iteration of the nonlinear solver to display the iteration's
3535    progress.
3536 
3537    Logically Collective on SNES
3538 
3539    Input Parameters:
3540 +  snes - the SNES context
3541 .  f - the monitor function, see SNESMonitorFunction for the calling sequence
3542 .  mctx - [optional] user-defined context for private data for the
3543           monitor routine (use NULL if no context is desired)
3544 -  monitordestroy - [optional] routine that frees monitor context
3545           (may be NULL)
3546 
3547    Options Database Keys:
3548 +    -snes_monitor        - sets SNESMonitorDefault()
3549 .    -snes_monitor_lg_residualnorm    - sets line graph monitor,
3550                             uses SNESMonitorLGCreate()
3551 -    -snes_monitor_cancel - cancels all monitors that have
3552                             been hardwired into a code by
3553                             calls to SNESMonitorSet(), but
3554                             does not cancel those set via
3555                             the options database.
3556 
3557    Notes:
3558    Several different monitoring routines may be set by calling
3559    SNESMonitorSet() multiple times; all will be called in the
3560    order in which they were set.
3561 
3562    Fortran notes: Only a single monitor function can be set for each SNES object
3563 
3564    Level: intermediate
3565 
3566 .keywords: SNES, nonlinear, set, monitor
3567 
3568 .seealso: SNESMonitorDefault(), SNESMonitorCancel(), SNESMonitorFunction
3569 @*/
3570 PetscErrorCode  SNESMonitorSet(SNES snes,PetscErrorCode (*f)(SNES,PetscInt,PetscReal,void*),void *mctx,PetscErrorCode (*monitordestroy)(void**))
3571 {
3572   PetscInt       i;
3573   PetscErrorCode ierr;
3574   PetscBool      identical;
3575 
3576   PetscFunctionBegin;
3577   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3578   for (i=0; i<snes->numbermonitors;i++) {
3579     ierr = PetscMonitorCompare((PetscErrorCode (*)(void))f,mctx,monitordestroy,(PetscErrorCode (*)(void))snes->monitor[i],snes->monitorcontext[i],snes->monitordestroy[i],&identical);CHKERRQ(ierr);
3580     if (identical) PetscFunctionReturn(0);
3581   }
3582   if (snes->numbermonitors >= MAXSNESMONITORS) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Too many monitors set");
3583   snes->monitor[snes->numbermonitors]          = f;
3584   snes->monitordestroy[snes->numbermonitors]   = monitordestroy;
3585   snes->monitorcontext[snes->numbermonitors++] = (void*)mctx;
3586   PetscFunctionReturn(0);
3587 }
3588 
3589 /*@
3590    SNESMonitorCancel - Clears all the monitor functions for a SNES object.
3591 
3592    Logically Collective on SNES
3593 
3594    Input Parameters:
3595 .  snes - the SNES context
3596 
3597    Options Database Key:
3598 .  -snes_monitor_cancel - cancels all monitors that have been hardwired
3599     into a code by calls to SNESMonitorSet(), but does not cancel those
3600     set via the options database
3601 
3602    Notes:
3603    There is no way to clear one specific monitor from a SNES object.
3604 
3605    Level: intermediate
3606 
3607 .keywords: SNES, nonlinear, set, monitor
3608 
3609 .seealso: SNESMonitorDefault(), SNESMonitorSet()
3610 @*/
3611 PetscErrorCode  SNESMonitorCancel(SNES snes)
3612 {
3613   PetscErrorCode ierr;
3614   PetscInt       i;
3615 
3616   PetscFunctionBegin;
3617   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3618   for (i=0; i<snes->numbermonitors; i++) {
3619     if (snes->monitordestroy[i]) {
3620       ierr = (*snes->monitordestroy[i])(&snes->monitorcontext[i]);CHKERRQ(ierr);
3621     }
3622   }
3623   snes->numbermonitors = 0;
3624   PetscFunctionReturn(0);
3625 }
3626 
3627 /*MC
3628     SNESConvergenceTestFunction - functional form used for testing of convergence of nonlinear solver
3629 
3630      Synopsis:
3631      #include <petscsnes.h>
3632 $     PetscErrorCode SNESConvergenceTest(SNES snes,PetscInt it,PetscReal xnorm,PetscReal gnorm,PetscReal f,SNESConvergedReason *reason,void *cctx)
3633 
3634 +    snes - the SNES context
3635 .    it - current iteration (0 is the first and is before any Newton step)
3636 .    cctx - [optional] convergence context
3637 .    reason - reason for convergence/divergence
3638 .    xnorm - 2-norm of current iterate
3639 .    gnorm - 2-norm of current step
3640 -    f - 2-norm of function
3641 
3642    Level: intermediate
3643 
3644 .seealso:   SNESSetConvergenceTest(), SNESGetConvergenceTest()
3645 M*/
3646 
3647 /*@C
3648    SNESSetConvergenceTest - Sets the function that is to be used
3649    to test for convergence of the nonlinear iterative solution.
3650 
3651    Logically Collective on SNES
3652 
3653    Input Parameters:
3654 +  snes - the SNES context
3655 .  SNESConvergenceTestFunction - routine to test for convergence
3656 .  cctx - [optional] context for private data for the convergence routine  (may be NULL)
3657 -  destroy - [optional] destructor for the context (may be NULL; NULL_FUNCTION in Fortran)
3658 
3659    Level: advanced
3660 
3661 .keywords: SNES, nonlinear, set, convergence, test
3662 
3663 .seealso: SNESConvergedDefault(), SNESConvergedSkip(), SNESConvergenceTestFunction
3664 @*/
3665 PetscErrorCode  SNESSetConvergenceTest(SNES snes,PetscErrorCode (*SNESConvergenceTestFunction)(SNES,PetscInt,PetscReal,PetscReal,PetscReal,SNESConvergedReason*,void*),void *cctx,PetscErrorCode (*destroy)(void*))
3666 {
3667   PetscErrorCode ierr;
3668 
3669   PetscFunctionBegin;
3670   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3671   if (!SNESConvergenceTestFunction) SNESConvergenceTestFunction = SNESConvergedSkip;
3672   if (snes->ops->convergeddestroy) {
3673     ierr = (*snes->ops->convergeddestroy)(snes->cnvP);CHKERRQ(ierr);
3674   }
3675   snes->ops->converged        = SNESConvergenceTestFunction;
3676   snes->ops->convergeddestroy = destroy;
3677   snes->cnvP                  = cctx;
3678   PetscFunctionReturn(0);
3679 }
3680 
3681 /*@
3682    SNESGetConvergedReason - Gets the reason the SNES iteration was stopped.
3683 
3684    Not Collective
3685 
3686    Input Parameter:
3687 .  snes - the SNES context
3688 
3689    Output Parameter:
3690 .  reason - negative value indicates diverged, positive value converged, see SNESConvergedReason or the
3691             manual pages for the individual convergence tests for complete lists
3692 
3693    Options Database:
3694 .   -snes_converged_reason - prints the reason to standard out
3695 
3696    Level: intermediate
3697 
3698    Notes: Should only be called after the call the SNESSolve() is complete, if it is called earlier it returns the value SNES__CONVERGED_ITERATING.
3699 
3700 .keywords: SNES, nonlinear, set, convergence, test
3701 
3702 .seealso: SNESSetConvergenceTest(), SNESSetConvergedReason(), SNESConvergedReason
3703 @*/
3704 PetscErrorCode SNESGetConvergedReason(SNES snes,SNESConvergedReason *reason)
3705 {
3706   PetscFunctionBegin;
3707   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3708   PetscValidPointer(reason,2);
3709   *reason = snes->reason;
3710   PetscFunctionReturn(0);
3711 }
3712 
3713 /*@
3714    SNESSetConvergedReason - Sets the reason the SNES iteration was stopped.
3715 
3716    Not Collective
3717 
3718    Input Parameters:
3719 +  snes - the SNES context
3720 -  reason - negative value indicates diverged, positive value converged, see SNESConvergedReason or the
3721             manual pages for the individual convergence tests for complete lists
3722 
3723    Level: intermediate
3724 
3725 .keywords: SNES, nonlinear, set, convergence, test
3726 .seealso: SNESGetConvergedReason(), SNESSetConvergenceTest(), SNESConvergedReason
3727 @*/
3728 PetscErrorCode SNESSetConvergedReason(SNES snes,SNESConvergedReason reason)
3729 {
3730   PetscFunctionBegin;
3731   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3732   snes->reason = reason;
3733   PetscFunctionReturn(0);
3734 }
3735 
3736 /*@
3737    SNESSetConvergenceHistory - Sets the array used to hold the convergence history.
3738 
3739    Logically Collective on SNES
3740 
3741    Input Parameters:
3742 +  snes - iterative context obtained from SNESCreate()
3743 .  a   - array to hold history, this array will contain the function norms computed at each step
3744 .  its - integer array holds the number of linear iterations for each solve.
3745 .  na  - size of a and its
3746 -  reset - PETSC_TRUE indicates each new nonlinear solve resets the history counter to zero,
3747            else it continues storing new values for new nonlinear solves after the old ones
3748 
3749    Notes:
3750    If 'a' and 'its' are NULL then space is allocated for the history. If 'na' PETSC_DECIDE or PETSC_DEFAULT then a
3751    default array of length 10000 is allocated.
3752 
3753    This routine is useful, e.g., when running a code for purposes
3754    of accurate performance monitoring, when no I/O should be done
3755    during the section of code that is being timed.
3756 
3757    Level: intermediate
3758 
3759 .keywords: SNES, set, convergence, history
3760 
3761 .seealso: SNESGetConvergenceHistory()
3762 
3763 @*/
3764 PetscErrorCode  SNESSetConvergenceHistory(SNES snes,PetscReal a[],PetscInt its[],PetscInt na,PetscBool reset)
3765 {
3766   PetscErrorCode ierr;
3767 
3768   PetscFunctionBegin;
3769   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3770   if (a) PetscValidScalarPointer(a,2);
3771   if (its) PetscValidIntPointer(its,3);
3772   if (!a) {
3773     if (na == PETSC_DECIDE || na == PETSC_DEFAULT) na = 1000;
3774     ierr = PetscCalloc1(na,&a);CHKERRQ(ierr);
3775     ierr = PetscCalloc1(na,&its);CHKERRQ(ierr);
3776 
3777     snes->conv_malloc = PETSC_TRUE;
3778   }
3779   snes->conv_hist       = a;
3780   snes->conv_hist_its   = its;
3781   snes->conv_hist_max   = na;
3782   snes->conv_hist_len   = 0;
3783   snes->conv_hist_reset = reset;
3784   PetscFunctionReturn(0);
3785 }
3786 
3787 #if defined(PETSC_HAVE_MATLAB_ENGINE)
3788 #include <engine.h>   /* MATLAB include file */
3789 #include <mex.h>      /* MATLAB include file */
3790 
3791 PETSC_EXTERN mxArray *SNESGetConvergenceHistoryMatlab(SNES snes)
3792 {
3793   mxArray   *mat;
3794   PetscInt  i;
3795   PetscReal *ar;
3796 
3797   PetscFunctionBegin;
3798   mat = mxCreateDoubleMatrix(snes->conv_hist_len,1,mxREAL);
3799   ar  = (PetscReal*) mxGetData(mat);
3800   for (i=0; i<snes->conv_hist_len; i++) ar[i] = snes->conv_hist[i];
3801   PetscFunctionReturn(mat);
3802 }
3803 #endif
3804 
3805 /*@C
3806    SNESGetConvergenceHistory - Gets the array used to hold the convergence history.
3807 
3808    Not Collective
3809 
3810    Input Parameter:
3811 .  snes - iterative context obtained from SNESCreate()
3812 
3813    Output Parameters:
3814 .  a   - array to hold history
3815 .  its - integer array holds the number of linear iterations (or
3816          negative if not converged) for each solve.
3817 -  na  - size of a and its
3818 
3819    Notes:
3820     The calling sequence for this routine in Fortran is
3821 $   call SNESGetConvergenceHistory(SNES snes, integer na, integer ierr)
3822 
3823    This routine is useful, e.g., when running a code for purposes
3824    of accurate performance monitoring, when no I/O should be done
3825    during the section of code that is being timed.
3826 
3827    Level: intermediate
3828 
3829 .keywords: SNES, get, convergence, history
3830 
3831 .seealso: SNESSetConvergencHistory()
3832 
3833 @*/
3834 PetscErrorCode  SNESGetConvergenceHistory(SNES snes,PetscReal *a[],PetscInt *its[],PetscInt *na)
3835 {
3836   PetscFunctionBegin;
3837   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3838   if (a)   *a   = snes->conv_hist;
3839   if (its) *its = snes->conv_hist_its;
3840   if (na)  *na  = snes->conv_hist_len;
3841   PetscFunctionReturn(0);
3842 }
3843 
3844 /*@C
3845   SNESSetUpdate - Sets the general-purpose update function called
3846   at the beginning of every iteration of the nonlinear solve. Specifically
3847   it is called just before the Jacobian is "evaluated".
3848 
3849   Logically Collective on SNES
3850 
3851   Input Parameters:
3852 . snes - The nonlinear solver context
3853 . func - The function
3854 
3855   Calling sequence of func:
3856 . func (SNES snes, PetscInt step);
3857 
3858 . step - The current step of the iteration
3859 
3860   Level: advanced
3861 
3862   Note: This is NOT what one uses to update the ghost points before a function evaluation, that should be done at the beginning of your FormFunction()
3863         This is not used by most users.
3864 
3865 .keywords: SNES, update
3866 
3867 .seealso SNESSetJacobian(), SNESSolve()
3868 @*/
3869 PetscErrorCode  SNESSetUpdate(SNES snes, PetscErrorCode (*func)(SNES, PetscInt))
3870 {
3871   PetscFunctionBegin;
3872   PetscValidHeaderSpecific(snes, SNES_CLASSID,1);
3873   snes->ops->update = func;
3874   PetscFunctionReturn(0);
3875 }
3876 
3877 /*
3878    SNESScaleStep_Private - Scales a step so that its length is less than the
3879    positive parameter delta.
3880 
3881     Input Parameters:
3882 +   snes - the SNES context
3883 .   y - approximate solution of linear system
3884 .   fnorm - 2-norm of current function
3885 -   delta - trust region size
3886 
3887     Output Parameters:
3888 +   gpnorm - predicted function norm at the new point, assuming local
3889     linearization.  The value is zero if the step lies within the trust
3890     region, and exceeds zero otherwise.
3891 -   ynorm - 2-norm of the step
3892 
3893     Note:
3894     For non-trust region methods such as SNESNEWTONLS, the parameter delta
3895     is set to be the maximum allowable step size.
3896 
3897 .keywords: SNES, nonlinear, scale, step
3898 */
3899 PetscErrorCode SNESScaleStep_Private(SNES snes,Vec y,PetscReal *fnorm,PetscReal *delta,PetscReal *gpnorm,PetscReal *ynorm)
3900 {
3901   PetscReal      nrm;
3902   PetscScalar    cnorm;
3903   PetscErrorCode ierr;
3904 
3905   PetscFunctionBegin;
3906   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3907   PetscValidHeaderSpecific(y,VEC_CLASSID,2);
3908   PetscCheckSameComm(snes,1,y,2);
3909 
3910   ierr = VecNorm(y,NORM_2,&nrm);CHKERRQ(ierr);
3911   if (nrm > *delta) {
3912     nrm     = *delta/nrm;
3913     *gpnorm = (1.0 - nrm)*(*fnorm);
3914     cnorm   = nrm;
3915     ierr    = VecScale(y,cnorm);CHKERRQ(ierr);
3916     *ynorm  = *delta;
3917   } else {
3918     *gpnorm = 0.0;
3919     *ynorm  = nrm;
3920   }
3921   PetscFunctionReturn(0);
3922 }
3923 
3924 /*@
3925    SNESReasonView - Displays the reason a SNES solve converged or diverged to a viewer
3926 
3927    Collective on SNES
3928 
3929    Parameter:
3930 +  snes - iterative context obtained from SNESCreate()
3931 -  viewer - the viewer to display the reason
3932 
3933 
3934    Options Database Keys:
3935 .  -snes_converged_reason - print reason for converged or diverged, also prints number of iterations
3936 
3937    Level: beginner
3938 
3939 .keywords: SNES, solve, linear system
3940 
3941 .seealso: SNESCreate(), SNESSetUp(), SNESDestroy(), SNESSetTolerances(), SNESConvergedDefault()
3942 
3943 @*/
3944 PetscErrorCode  SNESReasonView(SNES snes,PetscViewer viewer)
3945 {
3946   PetscErrorCode ierr;
3947   PetscBool      isAscii;
3948 
3949   PetscFunctionBegin;
3950   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&isAscii);CHKERRQ(ierr);
3951   if (isAscii) {
3952     ierr = PetscViewerASCIIAddTab(viewer,((PetscObject)snes)->tablevel);CHKERRQ(ierr);
3953     if (snes->reason > 0) {
3954       if (((PetscObject) snes)->prefix) {
3955         ierr = PetscViewerASCIIPrintf(viewer,"Nonlinear %s solve converged due to %s iterations %D\n",((PetscObject) snes)->prefix,SNESConvergedReasons[snes->reason],snes->iter);CHKERRQ(ierr);
3956       } else {
3957         ierr = PetscViewerASCIIPrintf(viewer,"Nonlinear solve converged due to %s iterations %D\n",SNESConvergedReasons[snes->reason],snes->iter);CHKERRQ(ierr);
3958       }
3959     } else {
3960       if (((PetscObject) snes)->prefix) {
3961         ierr = PetscViewerASCIIPrintf(viewer,"Nonlinear %s solve did not converge due to %s iterations %D\n",((PetscObject) snes)->prefix,SNESConvergedReasons[snes->reason],snes->iter);CHKERRQ(ierr);
3962       } else {
3963         ierr = PetscViewerASCIIPrintf(viewer,"Nonlinear solve did not converge due to %s iterations %D\n",SNESConvergedReasons[snes->reason],snes->iter);CHKERRQ(ierr);
3964       }
3965     }
3966     ierr = PetscViewerASCIISubtractTab(viewer,((PetscObject)snes)->tablevel);CHKERRQ(ierr);
3967   }
3968   PetscFunctionReturn(0);
3969 }
3970 
3971 /*@C
3972   SNESReasonViewFromOptions - Processes command line options to determine if/how a SNESReason is to be viewed.
3973 
3974   Collective on SNES
3975 
3976   Input Parameters:
3977 . snes   - the SNES object
3978 
3979   Level: intermediate
3980 
3981 @*/
3982 PetscErrorCode SNESReasonViewFromOptions(SNES snes)
3983 {
3984   PetscErrorCode    ierr;
3985   PetscViewer       viewer;
3986   PetscBool         flg;
3987   static PetscBool  incall = PETSC_FALSE;
3988   PetscViewerFormat format;
3989 
3990   PetscFunctionBegin;
3991   if (incall) PetscFunctionReturn(0);
3992   incall = PETSC_TRUE;
3993   ierr   = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_converged_reason",&viewer,&format,&flg);CHKERRQ(ierr);
3994   if (flg) {
3995     ierr = PetscViewerPushFormat(viewer,format);CHKERRQ(ierr);
3996     ierr = SNESReasonView(snes,viewer);CHKERRQ(ierr);
3997     ierr = PetscViewerPopFormat(viewer);CHKERRQ(ierr);
3998     ierr = PetscViewerDestroy(&viewer);CHKERRQ(ierr);
3999   }
4000   incall = PETSC_FALSE;
4001   PetscFunctionReturn(0);
4002 }
4003 
4004 /*@C
4005    SNESSolve - Solves a nonlinear system F(x) = b.
4006    Call SNESSolve() after calling SNESCreate() and optional routines of the form SNESSetXXX().
4007 
4008    Collective on SNES
4009 
4010    Input Parameters:
4011 +  snes - the SNES context
4012 .  b - the constant part of the equation F(x) = b, or NULL to use zero.
4013 -  x - the solution vector.
4014 
4015    Notes:
4016    The user should initialize the vector,x, with the initial guess
4017    for the nonlinear solve prior to calling SNESSolve.  In particular,
4018    to employ an initial guess of zero, the user should explicitly set
4019    this vector to zero by calling VecSet().
4020 
4021    Level: beginner
4022 
4023 .keywords: SNES, nonlinear, solve
4024 
4025 .seealso: SNESCreate(), SNESDestroy(), SNESSetFunction(), SNESSetJacobian(), SNESSetGridSequence(), SNESGetSolution()
4026 @*/
4027 PetscErrorCode  SNESSolve(SNES snes,Vec b,Vec x)
4028 {
4029   PetscErrorCode    ierr;
4030   PetscBool         flg;
4031   PetscInt          grid;
4032   Vec               xcreated = NULL;
4033   DM                dm;
4034 
4035   PetscFunctionBegin;
4036   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4037   if (x) PetscValidHeaderSpecific(x,VEC_CLASSID,3);
4038   if (x) PetscCheckSameComm(snes,1,x,3);
4039   if (b) PetscValidHeaderSpecific(b,VEC_CLASSID,2);
4040   if (b) PetscCheckSameComm(snes,1,b,2);
4041 
4042   {
4043     PetscViewer       viewer;
4044     PetscViewerFormat format;
4045     PetscBool         flg;
4046     static PetscBool  incall = PETSC_FALSE;
4047 
4048     if (!incall) {
4049       ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject) snes), ((PetscObject) snes)->prefix, "-snes_convergence_estimate", &viewer, &format, &flg);CHKERRQ(ierr);
4050       if (flg) {
4051         PetscConvEst conv;
4052         PetscReal    alpha; /* Convergence rate of the solution error in the L_2 norm */
4053 
4054         incall = PETSC_TRUE;
4055         ierr = PetscConvEstCreate(PetscObjectComm((PetscObject) snes), &conv);CHKERRQ(ierr);
4056         ierr = PetscConvEstSetSolver(conv, snes);CHKERRQ(ierr);
4057         ierr = PetscConvEstSetFromOptions(conv);CHKERRQ(ierr);
4058         ierr = PetscConvEstSetUp(conv);CHKERRQ(ierr);
4059         ierr = PetscConvEstGetConvRate(conv, &alpha);CHKERRQ(ierr);
4060         ierr = PetscViewerPushFormat(viewer, format);CHKERRQ(ierr);
4061         ierr = PetscConvEstRateView(conv, alpha, viewer);CHKERRQ(ierr);
4062         ierr = PetscViewerPopFormat(viewer);CHKERRQ(ierr);
4063         ierr = PetscViewerDestroy(&viewer);CHKERRQ(ierr);
4064         ierr = PetscConvEstDestroy(&conv);CHKERRQ(ierr);
4065         incall = PETSC_FALSE;
4066       }
4067     }
4068   }
4069   if (!x) {
4070     ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
4071     ierr = DMCreateGlobalVector(dm,&xcreated);CHKERRQ(ierr);
4072     x    = xcreated;
4073   }
4074   ierr = SNESViewFromOptions(snes,NULL,"-snes_view_pre");CHKERRQ(ierr);
4075 
4076   for (grid=0; grid<snes->gridsequence; grid++) {ierr = PetscViewerASCIIPushTab(PETSC_VIEWER_STDOUT_(PetscObjectComm((PetscObject)snes)));CHKERRQ(ierr);}
4077   for (grid=0; grid<snes->gridsequence+1; grid++) {
4078 
4079     /* set solution vector */
4080     if (!grid) {ierr = PetscObjectReference((PetscObject)x);CHKERRQ(ierr);}
4081     ierr          = VecDestroy(&snes->vec_sol);CHKERRQ(ierr);
4082     snes->vec_sol = x;
4083     ierr          = SNESGetDM(snes,&dm);CHKERRQ(ierr);
4084 
4085     /* set affine vector if provided */
4086     if (b) { ierr = PetscObjectReference((PetscObject)b);CHKERRQ(ierr); }
4087     ierr          = VecDestroy(&snes->vec_rhs);CHKERRQ(ierr);
4088     snes->vec_rhs = b;
4089 
4090     if (snes->vec_func == snes->vec_sol) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_IDN,"Solution vector cannot be function vector");
4091     if (snes->vec_rhs  == snes->vec_sol) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_IDN,"Solution vector cannot be right hand side vector");
4092     if (!snes->vec_sol_update /* && snes->vec_sol */) {
4093       ierr = VecDuplicate(snes->vec_sol,&snes->vec_sol_update);CHKERRQ(ierr);
4094       ierr = PetscLogObjectParent((PetscObject)snes,(PetscObject)snes->vec_sol_update);CHKERRQ(ierr);
4095     }
4096     ierr = DMShellSetGlobalVector(dm,snes->vec_sol);CHKERRQ(ierr);
4097     ierr = SNESSetUp(snes);CHKERRQ(ierr);
4098 
4099     if (!grid) {
4100       if (snes->ops->computeinitialguess) {
4101         ierr = (*snes->ops->computeinitialguess)(snes,snes->vec_sol,snes->initialguessP);CHKERRQ(ierr);
4102       }
4103     }
4104 
4105     if (snes->conv_hist_reset) snes->conv_hist_len = 0;
4106     if (snes->counters_reset) {snes->nfuncs = 0; snes->linear_its = 0; snes->numFailures = 0;}
4107 
4108     ierr = PetscLogEventBegin(SNES_Solve,snes,0,0,0);CHKERRQ(ierr);
4109     ierr = (*snes->ops->solve)(snes);CHKERRQ(ierr);
4110     ierr = PetscLogEventEnd(SNES_Solve,snes,0,0,0);CHKERRQ(ierr);
4111     if (!snes->reason) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_PLIB,"Internal error, solver returned without setting converged reason");
4112     snes->domainerror = PETSC_FALSE; /* clear the flag if it has been set */
4113 
4114     if (snes->lagjac_persist) snes->jac_iter += snes->iter;
4115     if (snes->lagpre_persist) snes->pre_iter += snes->iter;
4116 
4117     ierr   = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_test_local_min",NULL,NULL,&flg);CHKERRQ(ierr);
4118     if (flg && !PetscPreLoadingOn) { ierr = SNESTestLocalMin(snes);CHKERRQ(ierr); }
4119     ierr = SNESReasonViewFromOptions(snes);CHKERRQ(ierr);
4120 
4121     if (snes->errorifnotconverged && snes->reason < 0) SETERRQ(PetscObjectComm((PetscObject)snes),PETSC_ERR_NOT_CONVERGED,"SNESSolve has not converged");
4122     if (snes->reason < 0) break;
4123     if (grid <  snes->gridsequence) {
4124       DM  fine;
4125       Vec xnew;
4126       Mat interp;
4127 
4128       ierr = DMRefine(snes->dm,PetscObjectComm((PetscObject)snes),&fine);CHKERRQ(ierr);
4129       if (!fine) SETERRQ(PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_INCOMP,"DMRefine() did not perform any refinement, cannot continue grid sequencing");
4130       ierr = DMCreateInterpolation(snes->dm,fine,&interp,NULL);CHKERRQ(ierr);
4131       ierr = DMCreateGlobalVector(fine,&xnew);CHKERRQ(ierr);
4132       ierr = MatInterpolate(interp,x,xnew);CHKERRQ(ierr);
4133       ierr = DMInterpolate(snes->dm,interp,fine);CHKERRQ(ierr);
4134       ierr = MatDestroy(&interp);CHKERRQ(ierr);
4135       x    = xnew;
4136 
4137       ierr = SNESReset(snes);CHKERRQ(ierr);
4138       ierr = SNESSetDM(snes,fine);CHKERRQ(ierr);
4139       ierr = DMDestroy(&fine);CHKERRQ(ierr);
4140       ierr = PetscViewerASCIIPopTab(PETSC_VIEWER_STDOUT_(PetscObjectComm((PetscObject)snes)));CHKERRQ(ierr);
4141     }
4142   }
4143   ierr = SNESViewFromOptions(snes,NULL,"-snes_view");CHKERRQ(ierr);
4144   ierr = VecViewFromOptions(snes->vec_sol,(PetscObject)snes,"-snes_view_solution");CHKERRQ(ierr);
4145 
4146   ierr = VecDestroy(&xcreated);CHKERRQ(ierr);
4147   ierr = PetscObjectSAWsBlock((PetscObject)snes);CHKERRQ(ierr);
4148   PetscFunctionReturn(0);
4149 }
4150 
4151 /* --------- Internal routines for SNES Package --------- */
4152 
4153 /*@C
4154    SNESSetType - Sets the method for the nonlinear solver.
4155 
4156    Collective on SNES
4157 
4158    Input Parameters:
4159 +  snes - the SNES context
4160 -  type - a known method
4161 
4162    Options Database Key:
4163 .  -snes_type <type> - Sets the method; use -help for a list
4164    of available methods (for instance, newtonls or newtontr)
4165 
4166    Notes:
4167    See "petsc/include/petscsnes.h" for available methods (for instance)
4168 +    SNESNEWTONLS - Newton's method with line search
4169      (systems of nonlinear equations)
4170 .    SNESNEWTONTR - Newton's method with trust region
4171      (systems of nonlinear equations)
4172 
4173   Normally, it is best to use the SNESSetFromOptions() command and then
4174   set the SNES solver type from the options database rather than by using
4175   this routine.  Using the options database provides the user with
4176   maximum flexibility in evaluating the many nonlinear solvers.
4177   The SNESSetType() routine is provided for those situations where it
4178   is necessary to set the nonlinear solver independently of the command
4179   line or options database.  This might be the case, for example, when
4180   the choice of solver changes during the execution of the program,
4181   and the user's application is taking responsibility for choosing the
4182   appropriate method.
4183 
4184     Developer Notes: SNESRegister() adds a constructor for a new SNESType to SNESList, SNESSetType() locates
4185     the constructor in that list and calls it to create the spexific object.
4186 
4187   Level: intermediate
4188 
4189 .keywords: SNES, set, type
4190 
4191 .seealso: SNESType, SNESCreate(), SNESDestroy(), SNESGetType(), SNESSetFromOptions()
4192 
4193 @*/
4194 PetscErrorCode  SNESSetType(SNES snes,SNESType type)
4195 {
4196   PetscErrorCode ierr,(*r)(SNES);
4197   PetscBool      match;
4198 
4199   PetscFunctionBegin;
4200   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4201   PetscValidCharPointer(type,2);
4202 
4203   ierr = PetscObjectTypeCompare((PetscObject)snes,type,&match);CHKERRQ(ierr);
4204   if (match) PetscFunctionReturn(0);
4205 
4206   ierr =  PetscFunctionListFind(SNESList,type,&r);CHKERRQ(ierr);
4207   if (!r) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_UNKNOWN_TYPE,"Unable to find requested SNES type %s",type);
4208   /* Destroy the previous private SNES context */
4209   if (snes->ops->destroy) {
4210     ierr               = (*(snes)->ops->destroy)(snes);CHKERRQ(ierr);
4211     snes->ops->destroy = NULL;
4212   }
4213   /* Reinitialize function pointers in SNESOps structure */
4214   snes->ops->setup          = 0;
4215   snes->ops->solve          = 0;
4216   snes->ops->view           = 0;
4217   snes->ops->setfromoptions = 0;
4218   snes->ops->destroy        = 0;
4219   /* Call the SNESCreate_XXX routine for this particular Nonlinear solver */
4220   snes->setupcalled = PETSC_FALSE;
4221 
4222   ierr = PetscObjectChangeTypeName((PetscObject)snes,type);CHKERRQ(ierr);
4223   ierr = (*r)(snes);CHKERRQ(ierr);
4224   PetscFunctionReturn(0);
4225 }
4226 
4227 /*@C
4228    SNESGetType - Gets the SNES method type and name (as a string).
4229 
4230    Not Collective
4231 
4232    Input Parameter:
4233 .  snes - nonlinear solver context
4234 
4235    Output Parameter:
4236 .  type - SNES method (a character string)
4237 
4238    Level: intermediate
4239 
4240 .keywords: SNES, nonlinear, get, type, name
4241 @*/
4242 PetscErrorCode  SNESGetType(SNES snes,SNESType *type)
4243 {
4244   PetscFunctionBegin;
4245   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4246   PetscValidPointer(type,2);
4247   *type = ((PetscObject)snes)->type_name;
4248   PetscFunctionReturn(0);
4249 }
4250 
4251 /*@
4252   SNESSetSolution - Sets the solution vector for use by the SNES routines.
4253 
4254   Logically Collective on SNES and Vec
4255 
4256   Input Parameters:
4257 + snes - the SNES context obtained from SNESCreate()
4258 - u    - the solution vector
4259 
4260   Level: beginner
4261 
4262 .keywords: SNES, set, solution
4263 @*/
4264 PetscErrorCode SNESSetSolution(SNES snes, Vec u)
4265 {
4266   DM             dm;
4267   PetscErrorCode ierr;
4268 
4269   PetscFunctionBegin;
4270   PetscValidHeaderSpecific(snes, SNES_CLASSID, 1);
4271   PetscValidHeaderSpecific(u, VEC_CLASSID, 2);
4272   ierr = PetscObjectReference((PetscObject) u);CHKERRQ(ierr);
4273   ierr = VecDestroy(&snes->vec_sol);CHKERRQ(ierr);
4274 
4275   snes->vec_sol = u;
4276 
4277   ierr = SNESGetDM(snes, &dm);CHKERRQ(ierr);
4278   ierr = DMShellSetGlobalVector(dm, u);CHKERRQ(ierr);
4279   PetscFunctionReturn(0);
4280 }
4281 
4282 /*@
4283    SNESGetSolution - Returns the vector where the approximate solution is
4284    stored. This is the fine grid solution when using SNESSetGridSequence().
4285 
4286    Not Collective, but Vec is parallel if SNES is parallel
4287 
4288    Input Parameter:
4289 .  snes - the SNES context
4290 
4291    Output Parameter:
4292 .  x - the solution
4293 
4294    Level: intermediate
4295 
4296 .keywords: SNES, nonlinear, get, solution
4297 
4298 .seealso:  SNESGetSolutionUpdate(), SNESGetFunction()
4299 @*/
4300 PetscErrorCode  SNESGetSolution(SNES snes,Vec *x)
4301 {
4302   PetscFunctionBegin;
4303   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4304   PetscValidPointer(x,2);
4305   *x = snes->vec_sol;
4306   PetscFunctionReturn(0);
4307 }
4308 
4309 /*@
4310    SNESGetSolutionUpdate - Returns the vector where the solution update is
4311    stored.
4312 
4313    Not Collective, but Vec is parallel if SNES is parallel
4314 
4315    Input Parameter:
4316 .  snes - the SNES context
4317 
4318    Output Parameter:
4319 .  x - the solution update
4320 
4321    Level: advanced
4322 
4323 .keywords: SNES, nonlinear, get, solution, update
4324 
4325 .seealso: SNESGetSolution(), SNESGetFunction()
4326 @*/
4327 PetscErrorCode  SNESGetSolutionUpdate(SNES snes,Vec *x)
4328 {
4329   PetscFunctionBegin;
4330   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4331   PetscValidPointer(x,2);
4332   *x = snes->vec_sol_update;
4333   PetscFunctionReturn(0);
4334 }
4335 
4336 /*@C
4337    SNESGetFunction - Returns the vector where the function is stored.
4338 
4339    Not Collective, but Vec is parallel if SNES is parallel. Collective if Vec is requested, but has not been created yet.
4340 
4341    Input Parameter:
4342 .  snes - the SNES context
4343 
4344    Output Parameter:
4345 +  r - the vector that is used to store residuals (or NULL if you don't want it)
4346 .  f - the function (or NULL if you don't want it); see SNESFunction for calling sequence details
4347 -  ctx - the function context (or NULL if you don't want it)
4348 
4349    Level: advanced
4350 
4351 .keywords: SNES, nonlinear, get, function
4352 
4353 .seealso: SNESSetFunction(), SNESGetSolution(), SNESFunction
4354 @*/
4355 PetscErrorCode  SNESGetFunction(SNES snes,Vec *r,PetscErrorCode (**f)(SNES,Vec,Vec,void*),void **ctx)
4356 {
4357   PetscErrorCode ierr;
4358   DM             dm;
4359 
4360   PetscFunctionBegin;
4361   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4362   if (r) {
4363     if (!snes->vec_func) {
4364       if (snes->vec_rhs) {
4365         ierr = VecDuplicate(snes->vec_rhs,&snes->vec_func);CHKERRQ(ierr);
4366       } else if (snes->vec_sol) {
4367         ierr = VecDuplicate(snes->vec_sol,&snes->vec_func);CHKERRQ(ierr);
4368       } else if (snes->dm) {
4369         ierr = DMCreateGlobalVector(snes->dm,&snes->vec_func);CHKERRQ(ierr);
4370       }
4371     }
4372     *r = snes->vec_func;
4373   }
4374   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
4375   ierr = DMSNESGetFunction(dm,f,ctx);CHKERRQ(ierr);
4376   PetscFunctionReturn(0);
4377 }
4378 
4379 /*@C
4380    SNESGetNGS - Returns the NGS function and context.
4381 
4382    Input Parameter:
4383 .  snes - the SNES context
4384 
4385    Output Parameter:
4386 +  f - the function (or NULL) see SNESNGSFunction for details
4387 -  ctx    - the function context (or NULL)
4388 
4389    Level: advanced
4390 
4391 .keywords: SNES, nonlinear, get, function
4392 
4393 .seealso: SNESSetNGS(), SNESGetFunction()
4394 @*/
4395 
4396 PetscErrorCode SNESGetNGS (SNES snes, PetscErrorCode (**f)(SNES, Vec, Vec, void*), void ** ctx)
4397 {
4398   PetscErrorCode ierr;
4399   DM             dm;
4400 
4401   PetscFunctionBegin;
4402   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4403   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
4404   ierr = DMSNESGetNGS(dm,f,ctx);CHKERRQ(ierr);
4405   PetscFunctionReturn(0);
4406 }
4407 
4408 /*@C
4409    SNESSetOptionsPrefix - Sets the prefix used for searching for all
4410    SNES options in the database.
4411 
4412    Logically Collective on SNES
4413 
4414    Input Parameter:
4415 +  snes - the SNES context
4416 -  prefix - the prefix to prepend to all option names
4417 
4418    Notes:
4419    A hyphen (-) must NOT be given at the beginning of the prefix name.
4420    The first character of all runtime options is AUTOMATICALLY the hyphen.
4421 
4422    Level: advanced
4423 
4424 .keywords: SNES, set, options, prefix, database
4425 
4426 .seealso: SNESSetFromOptions()
4427 @*/
4428 PetscErrorCode  SNESSetOptionsPrefix(SNES snes,const char prefix[])
4429 {
4430   PetscErrorCode ierr;
4431 
4432   PetscFunctionBegin;
4433   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4434   ierr = PetscObjectSetOptionsPrefix((PetscObject)snes,prefix);CHKERRQ(ierr);
4435   if (!snes->ksp) {ierr = SNESGetKSP(snes,&snes->ksp);CHKERRQ(ierr);}
4436   if (snes->linesearch) {
4437     ierr = SNESGetLineSearch(snes,&snes->linesearch);CHKERRQ(ierr);
4438     ierr = PetscObjectSetOptionsPrefix((PetscObject)snes->linesearch,prefix);CHKERRQ(ierr);
4439   }
4440   ierr = KSPSetOptionsPrefix(snes->ksp,prefix);CHKERRQ(ierr);
4441   PetscFunctionReturn(0);
4442 }
4443 
4444 /*@C
4445    SNESAppendOptionsPrefix - Appends to the prefix used for searching for all
4446    SNES options in the database.
4447 
4448    Logically Collective on SNES
4449 
4450    Input Parameters:
4451 +  snes - the SNES context
4452 -  prefix - the prefix to prepend to all option names
4453 
4454    Notes:
4455    A hyphen (-) must NOT be given at the beginning of the prefix name.
4456    The first character of all runtime options is AUTOMATICALLY the hyphen.
4457 
4458    Level: advanced
4459 
4460 .keywords: SNES, append, options, prefix, database
4461 
4462 .seealso: SNESGetOptionsPrefix()
4463 @*/
4464 PetscErrorCode  SNESAppendOptionsPrefix(SNES snes,const char prefix[])
4465 {
4466   PetscErrorCode ierr;
4467 
4468   PetscFunctionBegin;
4469   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4470   ierr = PetscObjectAppendOptionsPrefix((PetscObject)snes,prefix);CHKERRQ(ierr);
4471   if (!snes->ksp) {ierr = SNESGetKSP(snes,&snes->ksp);CHKERRQ(ierr);}
4472   if (snes->linesearch) {
4473     ierr = SNESGetLineSearch(snes,&snes->linesearch);CHKERRQ(ierr);
4474     ierr = PetscObjectAppendOptionsPrefix((PetscObject)snes->linesearch,prefix);CHKERRQ(ierr);
4475   }
4476   ierr = KSPAppendOptionsPrefix(snes->ksp,prefix);CHKERRQ(ierr);
4477   PetscFunctionReturn(0);
4478 }
4479 
4480 /*@C
4481    SNESGetOptionsPrefix - Sets the prefix used for searching for all
4482    SNES options in the database.
4483 
4484    Not Collective
4485 
4486    Input Parameter:
4487 .  snes - the SNES context
4488 
4489    Output Parameter:
4490 .  prefix - pointer to the prefix string used
4491 
4492    Notes: On the fortran side, the user should pass in a string 'prefix' of
4493    sufficient length to hold the prefix.
4494 
4495    Level: advanced
4496 
4497 .keywords: SNES, get, options, prefix, database
4498 
4499 .seealso: SNESAppendOptionsPrefix()
4500 @*/
4501 PetscErrorCode  SNESGetOptionsPrefix(SNES snes,const char *prefix[])
4502 {
4503   PetscErrorCode ierr;
4504 
4505   PetscFunctionBegin;
4506   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4507   ierr = PetscObjectGetOptionsPrefix((PetscObject)snes,prefix);CHKERRQ(ierr);
4508   PetscFunctionReturn(0);
4509 }
4510 
4511 
4512 /*@C
4513   SNESRegister - Adds a method to the nonlinear solver package.
4514 
4515    Not collective
4516 
4517    Input Parameters:
4518 +  name_solver - name of a new user-defined solver
4519 -  routine_create - routine to create method context
4520 
4521    Notes:
4522    SNESRegister() may be called multiple times to add several user-defined solvers.
4523 
4524    Sample usage:
4525 .vb
4526    SNESRegister("my_solver",MySolverCreate);
4527 .ve
4528 
4529    Then, your solver can be chosen with the procedural interface via
4530 $     SNESSetType(snes,"my_solver")
4531    or at runtime via the option
4532 $     -snes_type my_solver
4533 
4534    Level: advanced
4535 
4536     Note: If your function is not being put into a shared library then use SNESRegister() instead
4537 
4538 .keywords: SNES, nonlinear, register
4539 
4540 .seealso: SNESRegisterAll(), SNESRegisterDestroy()
4541 
4542   Level: advanced
4543 @*/
4544 PetscErrorCode  SNESRegister(const char sname[],PetscErrorCode (*function)(SNES))
4545 {
4546   PetscErrorCode ierr;
4547 
4548   PetscFunctionBegin;
4549   ierr = PetscFunctionListAdd(&SNESList,sname,function);CHKERRQ(ierr);
4550   PetscFunctionReturn(0);
4551 }
4552 
4553 PetscErrorCode  SNESTestLocalMin(SNES snes)
4554 {
4555   PetscErrorCode ierr;
4556   PetscInt       N,i,j;
4557   Vec            u,uh,fh;
4558   PetscScalar    value;
4559   PetscReal      norm;
4560 
4561   PetscFunctionBegin;
4562   ierr = SNESGetSolution(snes,&u);CHKERRQ(ierr);
4563   ierr = VecDuplicate(u,&uh);CHKERRQ(ierr);
4564   ierr = VecDuplicate(u,&fh);CHKERRQ(ierr);
4565 
4566   /* currently only works for sequential */
4567   ierr = PetscPrintf(PETSC_COMM_WORLD,"Testing FormFunction() for local min\n");CHKERRQ(ierr);
4568   ierr = VecGetSize(u,&N);CHKERRQ(ierr);
4569   for (i=0; i<N; i++) {
4570     ierr = VecCopy(u,uh);CHKERRQ(ierr);
4571     ierr = PetscPrintf(PETSC_COMM_WORLD,"i = %D\n",i);CHKERRQ(ierr);
4572     for (j=-10; j<11; j++) {
4573       value = PetscSign(j)*PetscExpReal(PetscAbs(j)-10.0);
4574       ierr  = VecSetValue(uh,i,value,ADD_VALUES);CHKERRQ(ierr);
4575       ierr  = SNESComputeFunction(snes,uh,fh);CHKERRQ(ierr);
4576       ierr  = VecNorm(fh,NORM_2,&norm);CHKERRQ(ierr);
4577       ierr  = PetscPrintf(PETSC_COMM_WORLD,"       j norm %D %18.16e\n",j,norm);CHKERRQ(ierr);
4578       value = -value;
4579       ierr  = VecSetValue(uh,i,value,ADD_VALUES);CHKERRQ(ierr);
4580     }
4581   }
4582   ierr = VecDestroy(&uh);CHKERRQ(ierr);
4583   ierr = VecDestroy(&fh);CHKERRQ(ierr);
4584   PetscFunctionReturn(0);
4585 }
4586 
4587 /*@
4588    SNESKSPSetUseEW - Sets SNES use Eisenstat-Walker method for
4589    computing relative tolerance for linear solvers within an inexact
4590    Newton method.
4591 
4592    Logically Collective on SNES
4593 
4594    Input Parameters:
4595 +  snes - SNES context
4596 -  flag - PETSC_TRUE or PETSC_FALSE
4597 
4598     Options Database:
4599 +  -snes_ksp_ew - use Eisenstat-Walker method for determining linear system convergence
4600 .  -snes_ksp_ew_version ver - version of  Eisenstat-Walker method
4601 .  -snes_ksp_ew_rtol0 <rtol0> - Sets rtol0
4602 .  -snes_ksp_ew_rtolmax <rtolmax> - Sets rtolmax
4603 .  -snes_ksp_ew_gamma <gamma> - Sets gamma
4604 .  -snes_ksp_ew_alpha <alpha> - Sets alpha
4605 .  -snes_ksp_ew_alpha2 <alpha2> - Sets alpha2
4606 -  -snes_ksp_ew_threshold <threshold> - Sets threshold
4607 
4608    Notes:
4609    Currently, the default is to use a constant relative tolerance for
4610    the inner linear solvers.  Alternatively, one can use the
4611    Eisenstat-Walker method, where the relative convergence tolerance
4612    is reset at each Newton iteration according progress of the nonlinear
4613    solver.
4614 
4615    Level: advanced
4616 
4617    Reference:
4618    S. C. Eisenstat and H. F. Walker, "Choosing the forcing terms in an
4619    inexact Newton method", SISC 17 (1), pp.16-32, 1996.
4620 
4621 .keywords: SNES, KSP, Eisenstat, Walker, convergence, test, inexact, Newton
4622 
4623 .seealso: SNESKSPGetUseEW(), SNESKSPGetParametersEW(), SNESKSPSetParametersEW()
4624 @*/
4625 PetscErrorCode  SNESKSPSetUseEW(SNES snes,PetscBool flag)
4626 {
4627   PetscFunctionBegin;
4628   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4629   PetscValidLogicalCollectiveBool(snes,flag,2);
4630   snes->ksp_ewconv = flag;
4631   PetscFunctionReturn(0);
4632 }
4633 
4634 /*@
4635    SNESKSPGetUseEW - Gets if SNES is using Eisenstat-Walker method
4636    for computing relative tolerance for linear solvers within an
4637    inexact Newton method.
4638 
4639    Not Collective
4640 
4641    Input Parameter:
4642 .  snes - SNES context
4643 
4644    Output Parameter:
4645 .  flag - PETSC_TRUE or PETSC_FALSE
4646 
4647    Notes:
4648    Currently, the default is to use a constant relative tolerance for
4649    the inner linear solvers.  Alternatively, one can use the
4650    Eisenstat-Walker method, where the relative convergence tolerance
4651    is reset at each Newton iteration according progress of the nonlinear
4652    solver.
4653 
4654    Level: advanced
4655 
4656    Reference:
4657    S. C. Eisenstat and H. F. Walker, "Choosing the forcing terms in an
4658    inexact Newton method", SISC 17 (1), pp.16-32, 1996.
4659 
4660 .keywords: SNES, KSP, Eisenstat, Walker, convergence, test, inexact, Newton
4661 
4662 .seealso: SNESKSPSetUseEW(), SNESKSPGetParametersEW(), SNESKSPSetParametersEW()
4663 @*/
4664 PetscErrorCode  SNESKSPGetUseEW(SNES snes, PetscBool  *flag)
4665 {
4666   PetscFunctionBegin;
4667   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4668   PetscValidPointer(flag,2);
4669   *flag = snes->ksp_ewconv;
4670   PetscFunctionReturn(0);
4671 }
4672 
4673 /*@
4674    SNESKSPSetParametersEW - Sets parameters for Eisenstat-Walker
4675    convergence criteria for the linear solvers within an inexact
4676    Newton method.
4677 
4678    Logically Collective on SNES
4679 
4680    Input Parameters:
4681 +    snes - SNES context
4682 .    version - version 1, 2 (default is 2) or 3
4683 .    rtol_0 - initial relative tolerance (0 <= rtol_0 < 1)
4684 .    rtol_max - maximum relative tolerance (0 <= rtol_max < 1)
4685 .    gamma - multiplicative factor for version 2 rtol computation
4686              (0 <= gamma2 <= 1)
4687 .    alpha - power for version 2 rtol computation (1 < alpha <= 2)
4688 .    alpha2 - power for safeguard
4689 -    threshold - threshold for imposing safeguard (0 < threshold < 1)
4690 
4691    Note:
4692    Version 3 was contributed by Luis Chacon, June 2006.
4693 
4694    Use PETSC_DEFAULT to retain the default for any of the parameters.
4695 
4696    Level: advanced
4697 
4698    Reference:
4699    S. C. Eisenstat and H. F. Walker, "Choosing the forcing terms in an
4700    inexact Newton method", Utah State University Math. Stat. Dept. Res.
4701    Report 6/94/75, June, 1994, to appear in SIAM J. Sci. Comput.
4702 
4703 .keywords: SNES, KSP, Eisenstat, Walker, set, parameters
4704 
4705 .seealso: SNESKSPSetUseEW(), SNESKSPGetUseEW(), SNESKSPGetParametersEW()
4706 @*/
4707 PetscErrorCode  SNESKSPSetParametersEW(SNES snes,PetscInt version,PetscReal rtol_0,PetscReal rtol_max,PetscReal gamma,PetscReal alpha,PetscReal alpha2,PetscReal threshold)
4708 {
4709   SNESKSPEW *kctx;
4710 
4711   PetscFunctionBegin;
4712   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4713   kctx = (SNESKSPEW*)snes->kspconvctx;
4714   if (!kctx) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"No Eisenstat-Walker context existing");
4715   PetscValidLogicalCollectiveInt(snes,version,2);
4716   PetscValidLogicalCollectiveReal(snes,rtol_0,3);
4717   PetscValidLogicalCollectiveReal(snes,rtol_max,4);
4718   PetscValidLogicalCollectiveReal(snes,gamma,5);
4719   PetscValidLogicalCollectiveReal(snes,alpha,6);
4720   PetscValidLogicalCollectiveReal(snes,alpha2,7);
4721   PetscValidLogicalCollectiveReal(snes,threshold,8);
4722 
4723   if (version != PETSC_DEFAULT)   kctx->version   = version;
4724   if (rtol_0 != PETSC_DEFAULT)    kctx->rtol_0    = rtol_0;
4725   if (rtol_max != PETSC_DEFAULT)  kctx->rtol_max  = rtol_max;
4726   if (gamma != PETSC_DEFAULT)     kctx->gamma     = gamma;
4727   if (alpha != PETSC_DEFAULT)     kctx->alpha     = alpha;
4728   if (alpha2 != PETSC_DEFAULT)    kctx->alpha2    = alpha2;
4729   if (threshold != PETSC_DEFAULT) kctx->threshold = threshold;
4730 
4731   if (kctx->version < 1 || kctx->version > 3) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Only versions 1, 2 and 3 are supported: %D",kctx->version);
4732   if (kctx->rtol_0 < 0.0 || kctx->rtol_0 >= 1.0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 <= rtol_0 < 1.0: %g",(double)kctx->rtol_0);
4733   if (kctx->rtol_max < 0.0 || kctx->rtol_max >= 1.0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 <= rtol_max (%g) < 1.0\n",(double)kctx->rtol_max);
4734   if (kctx->gamma < 0.0 || kctx->gamma > 1.0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 <= gamma (%g) <= 1.0\n",(double)kctx->gamma);
4735   if (kctx->alpha <= 1.0 || kctx->alpha > 2.0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"1.0 < alpha (%g) <= 2.0\n",(double)kctx->alpha);
4736   if (kctx->threshold <= 0.0 || kctx->threshold >= 1.0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 < threshold (%g) < 1.0\n",(double)kctx->threshold);
4737   PetscFunctionReturn(0);
4738 }
4739 
4740 /*@
4741    SNESKSPGetParametersEW - Gets parameters for Eisenstat-Walker
4742    convergence criteria for the linear solvers within an inexact
4743    Newton method.
4744 
4745    Not Collective
4746 
4747    Input Parameters:
4748      snes - SNES context
4749 
4750    Output Parameters:
4751 +    version - version 1, 2 (default is 2) or 3
4752 .    rtol_0 - initial relative tolerance (0 <= rtol_0 < 1)
4753 .    rtol_max - maximum relative tolerance (0 <= rtol_max < 1)
4754 .    gamma - multiplicative factor for version 2 rtol computation (0 <= gamma2 <= 1)
4755 .    alpha - power for version 2 rtol computation (1 < alpha <= 2)
4756 .    alpha2 - power for safeguard
4757 -    threshold - threshold for imposing safeguard (0 < threshold < 1)
4758 
4759    Level: advanced
4760 
4761 .keywords: SNES, KSP, Eisenstat, Walker, get, parameters
4762 
4763 .seealso: SNESKSPSetUseEW(), SNESKSPGetUseEW(), SNESKSPSetParametersEW()
4764 @*/
4765 PetscErrorCode  SNESKSPGetParametersEW(SNES snes,PetscInt *version,PetscReal *rtol_0,PetscReal *rtol_max,PetscReal *gamma,PetscReal *alpha,PetscReal *alpha2,PetscReal *threshold)
4766 {
4767   SNESKSPEW *kctx;
4768 
4769   PetscFunctionBegin;
4770   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4771   kctx = (SNESKSPEW*)snes->kspconvctx;
4772   if (!kctx) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"No Eisenstat-Walker context existing");
4773   if (version)   *version   = kctx->version;
4774   if (rtol_0)    *rtol_0    = kctx->rtol_0;
4775   if (rtol_max)  *rtol_max  = kctx->rtol_max;
4776   if (gamma)     *gamma     = kctx->gamma;
4777   if (alpha)     *alpha     = kctx->alpha;
4778   if (alpha2)    *alpha2    = kctx->alpha2;
4779   if (threshold) *threshold = kctx->threshold;
4780   PetscFunctionReturn(0);
4781 }
4782 
4783  PetscErrorCode KSPPreSolve_SNESEW(KSP ksp, Vec b, Vec x, SNES snes)
4784 {
4785   PetscErrorCode ierr;
4786   SNESKSPEW      *kctx = (SNESKSPEW*)snes->kspconvctx;
4787   PetscReal      rtol  = PETSC_DEFAULT,stol;
4788 
4789   PetscFunctionBegin;
4790   if (!snes->ksp_ewconv) PetscFunctionReturn(0);
4791   if (!snes->iter) {
4792     rtol = kctx->rtol_0; /* first time in, so use the original user rtol */
4793     ierr = VecNorm(snes->vec_func,NORM_2,&kctx->norm_first);CHKERRQ(ierr);
4794   }
4795   else {
4796     if (kctx->version == 1) {
4797       rtol = (snes->norm - kctx->lresid_last)/kctx->norm_last;
4798       if (rtol < 0.0) rtol = -rtol;
4799       stol = PetscPowReal(kctx->rtol_last,kctx->alpha2);
4800       if (stol > kctx->threshold) rtol = PetscMax(rtol,stol);
4801     } else if (kctx->version == 2) {
4802       rtol = kctx->gamma * PetscPowReal(snes->norm/kctx->norm_last,kctx->alpha);
4803       stol = kctx->gamma * PetscPowReal(kctx->rtol_last,kctx->alpha);
4804       if (stol > kctx->threshold) rtol = PetscMax(rtol,stol);
4805     } else if (kctx->version == 3) { /* contributed by Luis Chacon, June 2006. */
4806       rtol = kctx->gamma * PetscPowReal(snes->norm/kctx->norm_last,kctx->alpha);
4807       /* safeguard: avoid sharp decrease of rtol */
4808       stol = kctx->gamma*PetscPowReal(kctx->rtol_last,kctx->alpha);
4809       stol = PetscMax(rtol,stol);
4810       rtol = PetscMin(kctx->rtol_0,stol);
4811       /* safeguard: avoid oversolving */
4812       stol = kctx->gamma*(kctx->norm_first*snes->rtol)/snes->norm;
4813       stol = PetscMax(rtol,stol);
4814       rtol = PetscMin(kctx->rtol_0,stol);
4815     } else SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Only versions 1, 2 or 3 are supported: %D",kctx->version);
4816   }
4817   /* safeguard: avoid rtol greater than one */
4818   rtol = PetscMin(rtol,kctx->rtol_max);
4819   ierr = KSPSetTolerances(ksp,rtol,PETSC_DEFAULT,PETSC_DEFAULT,PETSC_DEFAULT);CHKERRQ(ierr);
4820   ierr = PetscInfo3(snes,"iter %D, Eisenstat-Walker (version %D) KSP rtol=%g\n",snes->iter,kctx->version,(double)rtol);CHKERRQ(ierr);
4821   PetscFunctionReturn(0);
4822 }
4823 
4824 PetscErrorCode KSPPostSolve_SNESEW(KSP ksp, Vec b, Vec x, SNES snes)
4825 {
4826   PetscErrorCode ierr;
4827   SNESKSPEW      *kctx = (SNESKSPEW*)snes->kspconvctx;
4828   PCSide         pcside;
4829   Vec            lres;
4830 
4831   PetscFunctionBegin;
4832   if (!snes->ksp_ewconv) PetscFunctionReturn(0);
4833   ierr = KSPGetTolerances(ksp,&kctx->rtol_last,0,0,0);CHKERRQ(ierr);
4834   kctx->norm_last = snes->norm;
4835   if (kctx->version == 1) {
4836     PC        pc;
4837     PetscBool isNone;
4838 
4839     ierr = KSPGetPC(ksp, &pc);CHKERRQ(ierr);
4840     ierr = PetscObjectTypeCompare((PetscObject) pc, PCNONE, &isNone);CHKERRQ(ierr);
4841     ierr = KSPGetPCSide(ksp,&pcside);CHKERRQ(ierr);
4842      if (pcside == PC_RIGHT || isNone) { /* XXX Should we also test KSP_UNPRECONDITIONED_NORM ? */
4843       /* KSP residual is true linear residual */
4844       ierr = KSPGetResidualNorm(ksp,&kctx->lresid_last);CHKERRQ(ierr);
4845     } else {
4846       /* KSP residual is preconditioned residual */
4847       /* compute true linear residual norm */
4848       ierr = VecDuplicate(b,&lres);CHKERRQ(ierr);
4849       ierr = MatMult(snes->jacobian,x,lres);CHKERRQ(ierr);
4850       ierr = VecAYPX(lres,-1.0,b);CHKERRQ(ierr);
4851       ierr = VecNorm(lres,NORM_2,&kctx->lresid_last);CHKERRQ(ierr);
4852       ierr = VecDestroy(&lres);CHKERRQ(ierr);
4853     }
4854   }
4855   PetscFunctionReturn(0);
4856 }
4857 
4858 /*@
4859    SNESGetKSP - Returns the KSP context for a SNES solver.
4860 
4861    Not Collective, but if SNES object is parallel, then KSP object is parallel
4862 
4863    Input Parameter:
4864 .  snes - the SNES context
4865 
4866    Output Parameter:
4867 .  ksp - the KSP context
4868 
4869    Notes:
4870    The user can then directly manipulate the KSP context to set various
4871    options, etc.  Likewise, the user can then extract and manipulate the
4872    PC contexts as well.
4873 
4874    Level: beginner
4875 
4876 .keywords: SNES, nonlinear, get, KSP, context
4877 
4878 .seealso: KSPGetPC(), SNESCreate(), KSPCreate(), SNESSetKSP()
4879 @*/
4880 PetscErrorCode  SNESGetKSP(SNES snes,KSP *ksp)
4881 {
4882   PetscErrorCode ierr;
4883 
4884   PetscFunctionBegin;
4885   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4886   PetscValidPointer(ksp,2);
4887 
4888   if (!snes->ksp) {
4889     PetscBool monitor = PETSC_FALSE;
4890 
4891     ierr = KSPCreate(PetscObjectComm((PetscObject)snes),&snes->ksp);CHKERRQ(ierr);
4892     ierr = PetscObjectIncrementTabLevel((PetscObject)snes->ksp,(PetscObject)snes,1);CHKERRQ(ierr);
4893     ierr = PetscLogObjectParent((PetscObject)snes,(PetscObject)snes->ksp);CHKERRQ(ierr);
4894 
4895     ierr = KSPSetPreSolve(snes->ksp,(PetscErrorCode (*)(KSP,Vec,Vec,void*))KSPPreSolve_SNESEW,snes);CHKERRQ(ierr);
4896     ierr = KSPSetPostSolve(snes->ksp,(PetscErrorCode (*)(KSP,Vec,Vec,void*))KSPPostSolve_SNESEW,snes);CHKERRQ(ierr);
4897 
4898     ierr = PetscOptionsGetBool(((PetscObject)snes)->options,((PetscObject)snes)->prefix,"-ksp_monitor_snes",&monitor,NULL);CHKERRQ(ierr);
4899     if (monitor) {
4900       ierr = KSPMonitorSet(snes->ksp,KSPMonitorSNES,snes,NULL);CHKERRQ(ierr);
4901     }
4902     monitor = PETSC_FALSE;
4903     ierr = PetscOptionsGetBool(((PetscObject)snes)->options,((PetscObject)snes)->prefix,"-ksp_monitor_snes_lg",&monitor,NULL);CHKERRQ(ierr);
4904     if (monitor) {
4905       PetscObject *objs;
4906       ierr = KSPMonitorSNESLGResidualNormCreate(PetscObjectComm((PetscObject)snes),NULL,NULL,PETSC_DECIDE,PETSC_DECIDE,600,600,&objs);CHKERRQ(ierr);
4907       objs[0] = (PetscObject) snes;
4908       ierr = KSPMonitorSet(snes->ksp,(PetscErrorCode (*)(KSP,PetscInt,PetscReal,void*))KSPMonitorSNESLGResidualNorm,objs,(PetscErrorCode (*)(void**))KSPMonitorSNESLGResidualNormDestroy);CHKERRQ(ierr);
4909     }
4910   }
4911   *ksp = snes->ksp;
4912   PetscFunctionReturn(0);
4913 }
4914 
4915 
4916 #include <petsc/private/dmimpl.h>
4917 /*@
4918    SNESSetDM - Sets the DM that may be used by some nonlinear solvers or their underlying preconditioners
4919 
4920    Logically Collective on SNES
4921 
4922    Input Parameters:
4923 +  snes - the nonlinear solver context
4924 -  dm - the dm, cannot be NULL
4925 
4926    Level: intermediate
4927 
4928 .seealso: SNESGetDM(), SNESHasDM(), KSPSetDM(), KSPGetDM()
4929 @*/
4930 PetscErrorCode  SNESSetDM(SNES snes,DM dm)
4931 {
4932   PetscErrorCode ierr;
4933   KSP            ksp;
4934   DMSNES         sdm;
4935 
4936   PetscFunctionBegin;
4937   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4938   PetscValidHeaderSpecific(dm,DM_CLASSID,2);
4939   ierr = PetscObjectReference((PetscObject)dm);CHKERRQ(ierr);
4940   if (snes->dm) {               /* Move the DMSNES context over to the new DM unless the new DM already has one */
4941     if (snes->dm->dmsnes && !dm->dmsnes) {
4942       ierr = DMCopyDMSNES(snes->dm,dm);CHKERRQ(ierr);
4943       ierr = DMGetDMSNES(snes->dm,&sdm);CHKERRQ(ierr);
4944       if (sdm->originaldm == snes->dm) sdm->originaldm = dm; /* Grant write privileges to the replacement DM */
4945     }
4946     ierr = DMCoarsenHookRemove(snes->dm,DMCoarsenHook_SNESVecSol,DMRestrictHook_SNESVecSol,snes);CHKERRQ(ierr);
4947     ierr = DMDestroy(&snes->dm);CHKERRQ(ierr);
4948   }
4949   snes->dm     = dm;
4950   snes->dmAuto = PETSC_FALSE;
4951 
4952   ierr = SNESGetKSP(snes,&ksp);CHKERRQ(ierr);
4953   ierr = KSPSetDM(ksp,dm);CHKERRQ(ierr);
4954   ierr = KSPSetDMActive(ksp,PETSC_FALSE);CHKERRQ(ierr);
4955   if (snes->npc) {
4956     ierr = SNESSetDM(snes->npc, snes->dm);CHKERRQ(ierr);
4957     ierr = SNESSetNPCSide(snes,snes->npcside);CHKERRQ(ierr);
4958   }
4959   PetscFunctionReturn(0);
4960 }
4961 
4962 /*@
4963    SNESGetDM - Gets the DM that may be used by some preconditioners
4964 
4965    Not Collective but DM obtained is parallel on SNES
4966 
4967    Input Parameter:
4968 . snes - the preconditioner context
4969 
4970    Output Parameter:
4971 .  dm - the dm
4972 
4973    Level: intermediate
4974 
4975 .seealso: SNESSetDM(), SNESHasDM(), KSPSetDM(), KSPGetDM()
4976 @*/
4977 PetscErrorCode  SNESGetDM(SNES snes,DM *dm)
4978 {
4979   PetscErrorCode ierr;
4980 
4981   PetscFunctionBegin;
4982   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4983   if (!snes->dm) {
4984     ierr         = DMShellCreate(PetscObjectComm((PetscObject)snes),&snes->dm);CHKERRQ(ierr);
4985     snes->dmAuto = PETSC_TRUE;
4986   }
4987   *dm = snes->dm;
4988   PetscFunctionReturn(0);
4989 }
4990 
4991 
4992 /*@
4993    SNESHasDM - Whether snes has dm
4994 
4995    Not collective but all processes must return the same value
4996 
4997    Input Parameter:
4998 . snes - the nonlinear solver object
4999 
5000    Output Parameter:
5001 .  hasdm - a flag indicates whether there is dm in snes
5002 
5003    Level: intermediate
5004 
5005 .seealso: SNESGetDM(), SNESSetDM(), KSPSetDM(), KSPGetDM()
5006 @*/
5007 PetscErrorCode  SNESHasDM(SNES snes,PetscBool *hasdm)
5008 {
5009   PetscFunctionBegin;
5010   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
5011   PetscValidPointer(hasdm,2);
5012   if (snes->dm) *hasdm = PETSC_TRUE;
5013   else *hasdm = PETSC_FALSE;
5014   PetscFunctionReturn(0);
5015 }
5016 
5017 /*@
5018   SNESSetNPC - Sets the nonlinear preconditioner to be used.
5019 
5020   Collective on SNES
5021 
5022   Input Parameters:
5023 + snes - iterative context obtained from SNESCreate()
5024 - pc   - the preconditioner object
5025 
5026   Notes:
5027   Use SNESGetNPC() to retrieve the preconditioner context (for example,
5028   to configure it using the API).
5029 
5030   Level: developer
5031 
5032 .keywords: SNES, set, precondition
5033 .seealso: SNESGetNPC(), SNESHasNPC()
5034 @*/
5035 PetscErrorCode SNESSetNPC(SNES snes, SNES pc)
5036 {
5037   PetscErrorCode ierr;
5038 
5039   PetscFunctionBegin;
5040   PetscValidHeaderSpecific(snes, SNES_CLASSID, 1);
5041   PetscValidHeaderSpecific(pc, SNES_CLASSID, 2);
5042   PetscCheckSameComm(snes, 1, pc, 2);
5043   ierr     = PetscObjectReference((PetscObject) pc);CHKERRQ(ierr);
5044   ierr     = SNESDestroy(&snes->npc);CHKERRQ(ierr);
5045   snes->npc = pc;
5046   ierr     = PetscLogObjectParent((PetscObject)snes, (PetscObject)snes->npc);CHKERRQ(ierr);
5047   PetscFunctionReturn(0);
5048 }
5049 
5050 /*@
5051   SNESGetNPC - Creates a nonlinear preconditioning solver (SNES) to be used to precondition the nonlinear solver.
5052 
5053   Not Collective
5054 
5055   Input Parameter:
5056 . snes - iterative context obtained from SNESCreate()
5057 
5058   Output Parameter:
5059 . pc - preconditioner context
5060 
5061   Notes: If a SNES was previously set with SNESSetNPC() then that SNES is returned.
5062 
5063   Level: developer
5064 
5065 .keywords: SNES, get, preconditioner
5066 .seealso: SNESSetNPC(), SNESHasNPC()
5067 @*/
5068 PetscErrorCode SNESGetNPC(SNES snes, SNES *pc)
5069 {
5070   PetscErrorCode ierr;
5071   const char     *optionsprefix;
5072 
5073   PetscFunctionBegin;
5074   PetscValidHeaderSpecific(snes, SNES_CLASSID, 1);
5075   PetscValidPointer(pc, 2);
5076   if (!snes->npc) {
5077     ierr = SNESCreate(PetscObjectComm((PetscObject)snes),&snes->npc);CHKERRQ(ierr);
5078     ierr = PetscObjectIncrementTabLevel((PetscObject)snes->npc,(PetscObject)snes,1);CHKERRQ(ierr);
5079     ierr = PetscLogObjectParent((PetscObject)snes,(PetscObject)snes->npc);CHKERRQ(ierr);
5080     ierr = SNESGetOptionsPrefix(snes,&optionsprefix);CHKERRQ(ierr);
5081     ierr = SNESSetOptionsPrefix(snes->npc,optionsprefix);CHKERRQ(ierr);
5082     ierr = SNESAppendOptionsPrefix(snes->npc,"npc_");CHKERRQ(ierr);
5083     ierr = SNESSetCountersReset(snes->npc,PETSC_FALSE);CHKERRQ(ierr);
5084   }
5085   *pc = snes->npc;
5086   PetscFunctionReturn(0);
5087 }
5088 
5089 /*@
5090   SNESHasNPC - Returns whether a nonlinear preconditioner exists
5091 
5092   Not Collective
5093 
5094   Input Parameter:
5095 . snes - iterative context obtained from SNESCreate()
5096 
5097   Output Parameter:
5098 . has_npc - whether the SNES has an NPC or not
5099 
5100   Level: developer
5101 
5102 .keywords: SNES, has, preconditioner
5103 .seealso: SNESSetNPC(), SNESGetNPC()
5104 @*/
5105 PetscErrorCode SNESHasNPC(SNES snes, PetscBool *has_npc)
5106 {
5107   PetscFunctionBegin;
5108   PetscValidHeaderSpecific(snes, SNES_CLASSID, 1);
5109   *has_npc = (PetscBool) (snes->npc ? PETSC_TRUE : PETSC_FALSE);
5110   PetscFunctionReturn(0);
5111 }
5112 
5113 /*@
5114     SNESSetNPCSide - Sets the preconditioning side.
5115 
5116     Logically Collective on SNES
5117 
5118     Input Parameter:
5119 .   snes - iterative context obtained from SNESCreate()
5120 
5121     Output Parameter:
5122 .   side - the preconditioning side, where side is one of
5123 .vb
5124       PC_LEFT - left preconditioning
5125       PC_RIGHT - right preconditioning (default for most nonlinear solvers)
5126 .ve
5127 
5128     Options Database Keys:
5129 .   -snes_pc_side <right,left>
5130 
5131     Notes: SNESNRICHARDSON and SNESNCG only support left preconditioning.
5132 
5133     Level: intermediate
5134 
5135 .keywords: SNES, set, right, left, side, preconditioner, flag
5136 
5137 .seealso: SNESGetNPCSide(), KSPSetPCSide()
5138 @*/
5139 PetscErrorCode  SNESSetNPCSide(SNES snes,PCSide side)
5140 {
5141   PetscFunctionBegin;
5142   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
5143   PetscValidLogicalCollectiveEnum(snes,side,2);
5144   snes->npcside= side;
5145   PetscFunctionReturn(0);
5146 }
5147 
5148 /*@
5149     SNESGetNPCSide - Gets the preconditioning side.
5150 
5151     Not Collective
5152 
5153     Input Parameter:
5154 .   snes - iterative context obtained from SNESCreate()
5155 
5156     Output Parameter:
5157 .   side - the preconditioning side, where side is one of
5158 .vb
5159       PC_LEFT - left preconditioning
5160       PC_RIGHT - right preconditioning (default for most nonlinear solvers)
5161 .ve
5162 
5163     Level: intermediate
5164 
5165 .keywords: SNES, get, right, left, side, preconditioner, flag
5166 
5167 .seealso: SNESSetNPCSide(), KSPGetPCSide()
5168 @*/
5169 PetscErrorCode  SNESGetNPCSide(SNES snes,PCSide *side)
5170 {
5171   PetscFunctionBegin;
5172   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
5173   PetscValidPointer(side,2);
5174   *side = snes->npcside;
5175   PetscFunctionReturn(0);
5176 }
5177 
5178 /*@
5179   SNESSetLineSearch - Sets the linesearch on the SNES instance.
5180 
5181   Collective on SNES
5182 
5183   Input Parameters:
5184 + snes - iterative context obtained from SNESCreate()
5185 - linesearch   - the linesearch object
5186 
5187   Notes:
5188   Use SNESGetLineSearch() to retrieve the preconditioner context (for example,
5189   to configure it using the API).
5190 
5191   Level: developer
5192 
5193 .keywords: SNES, set, linesearch
5194 .seealso: SNESGetLineSearch()
5195 @*/
5196 PetscErrorCode SNESSetLineSearch(SNES snes, SNESLineSearch linesearch)
5197 {
5198   PetscErrorCode ierr;
5199 
5200   PetscFunctionBegin;
5201   PetscValidHeaderSpecific(snes, SNES_CLASSID, 1);
5202   PetscValidHeaderSpecific(linesearch, SNESLINESEARCH_CLASSID, 2);
5203   PetscCheckSameComm(snes, 1, linesearch, 2);
5204   ierr = PetscObjectReference((PetscObject) linesearch);CHKERRQ(ierr);
5205   ierr = SNESLineSearchDestroy(&snes->linesearch);CHKERRQ(ierr);
5206 
5207   snes->linesearch = linesearch;
5208 
5209   ierr = PetscLogObjectParent((PetscObject)snes, (PetscObject)snes->linesearch);CHKERRQ(ierr);
5210   PetscFunctionReturn(0);
5211 }
5212 
5213 /*@
5214   SNESGetLineSearch - Returns a pointer to the line search context set with SNESSetLineSearch()
5215   or creates a default line search instance associated with the SNES and returns it.
5216 
5217   Not Collective
5218 
5219   Input Parameter:
5220 . snes - iterative context obtained from SNESCreate()
5221 
5222   Output Parameter:
5223 . linesearch - linesearch context
5224 
5225   Level: beginner
5226 
5227 .keywords: SNES, get, linesearch
5228 .seealso: SNESSetLineSearch(), SNESLineSearchCreate()
5229 @*/
5230 PetscErrorCode SNESGetLineSearch(SNES snes, SNESLineSearch *linesearch)
5231 {
5232   PetscErrorCode ierr;
5233   const char     *optionsprefix;
5234 
5235   PetscFunctionBegin;
5236   PetscValidHeaderSpecific(snes, SNES_CLASSID, 1);
5237   PetscValidPointer(linesearch, 2);
5238   if (!snes->linesearch) {
5239     ierr = SNESGetOptionsPrefix(snes, &optionsprefix);CHKERRQ(ierr);
5240     ierr = SNESLineSearchCreate(PetscObjectComm((PetscObject)snes), &snes->linesearch);CHKERRQ(ierr);
5241     ierr = SNESLineSearchSetSNES(snes->linesearch, snes);CHKERRQ(ierr);
5242     ierr = SNESLineSearchAppendOptionsPrefix(snes->linesearch, optionsprefix);CHKERRQ(ierr);
5243     ierr = PetscObjectIncrementTabLevel((PetscObject) snes->linesearch, (PetscObject) snes, 1);CHKERRQ(ierr);
5244     ierr = PetscLogObjectParent((PetscObject)snes, (PetscObject)snes->linesearch);CHKERRQ(ierr);
5245   }
5246   *linesearch = snes->linesearch;
5247   PetscFunctionReturn(0);
5248 }
5249 
5250 #if defined(PETSC_HAVE_MATLAB_ENGINE)
5251 #include <mex.h>
5252 
5253 typedef struct {char *funcname; mxArray *ctx;} SNESMatlabContext;
5254 
5255 /*
5256    SNESComputeFunction_Matlab - Calls the function that has been set with SNESSetFunctionMatlab().
5257 
5258    Collective on SNES
5259 
5260    Input Parameters:
5261 +  snes - the SNES context
5262 -  x - input vector
5263 
5264    Output Parameter:
5265 .  y - function vector, as set by SNESSetFunction()
5266 
5267    Notes:
5268    SNESComputeFunction() is typically used within nonlinear solvers
5269    implementations, so most users would not generally call this routine
5270    themselves.
5271 
5272    Level: developer
5273 
5274 .keywords: SNES, nonlinear, compute, function
5275 
5276 .seealso: SNESSetFunction(), SNESGetFunction()
5277 */
5278 PetscErrorCode  SNESComputeFunction_Matlab(SNES snes,Vec x,Vec y, void *ctx)
5279 {
5280   PetscErrorCode    ierr;
5281   SNESMatlabContext *sctx = (SNESMatlabContext*)ctx;
5282   int               nlhs  = 1,nrhs = 5;
5283   mxArray           *plhs[1],*prhs[5];
5284   long long int     lx = 0,ly = 0,ls = 0;
5285 
5286   PetscFunctionBegin;
5287   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
5288   PetscValidHeaderSpecific(x,VEC_CLASSID,2);
5289   PetscValidHeaderSpecific(y,VEC_CLASSID,3);
5290   PetscCheckSameComm(snes,1,x,2);
5291   PetscCheckSameComm(snes,1,y,3);
5292 
5293   /* call Matlab function in ctx with arguments x and y */
5294 
5295   ierr    = PetscMemcpy(&ls,&snes,sizeof(snes));CHKERRQ(ierr);
5296   ierr    = PetscMemcpy(&lx,&x,sizeof(x));CHKERRQ(ierr);
5297   ierr    = PetscMemcpy(&ly,&y,sizeof(x));CHKERRQ(ierr);
5298   prhs[0] = mxCreateDoubleScalar((double)ls);
5299   prhs[1] = mxCreateDoubleScalar((double)lx);
5300   prhs[2] = mxCreateDoubleScalar((double)ly);
5301   prhs[3] = mxCreateString(sctx->funcname);
5302   prhs[4] = sctx->ctx;
5303   ierr    = mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscSNESComputeFunctionInternal");CHKERRQ(ierr);
5304   ierr    = mxGetScalar(plhs[0]);CHKERRQ(ierr);
5305   mxDestroyArray(prhs[0]);
5306   mxDestroyArray(prhs[1]);
5307   mxDestroyArray(prhs[2]);
5308   mxDestroyArray(prhs[3]);
5309   mxDestroyArray(plhs[0]);
5310   PetscFunctionReturn(0);
5311 }
5312 
5313 /*
5314    SNESSetFunctionMatlab - Sets the function evaluation routine and function
5315    vector for use by the SNES routines in solving systems of nonlinear
5316    equations from MATLAB. Here the function is a string containing the name of a MATLAB function
5317 
5318    Logically Collective on SNES
5319 
5320    Input Parameters:
5321 +  snes - the SNES context
5322 .  r - vector to store function value
5323 -  f - function evaluation routine
5324 
5325    Notes:
5326    The Newton-like methods typically solve linear systems of the form
5327 $      f'(x) x = -f(x),
5328    where f'(x) denotes the Jacobian matrix and f(x) is the function.
5329 
5330    Level: beginner
5331 
5332    Developer Note:  This bleeds the allocated memory SNESMatlabContext *sctx;
5333 
5334 .keywords: SNES, nonlinear, set, function
5335 
5336 .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetFunction()
5337 */
5338 PetscErrorCode  SNESSetFunctionMatlab(SNES snes,Vec r,const char *f,mxArray *ctx)
5339 {
5340   PetscErrorCode    ierr;
5341   SNESMatlabContext *sctx;
5342 
5343   PetscFunctionBegin;
5344   /* currently sctx is memory bleed */
5345   ierr = PetscNew(&sctx);CHKERRQ(ierr);
5346   ierr = PetscStrallocpy(f,&sctx->funcname);CHKERRQ(ierr);
5347   /*
5348      This should work, but it doesn't
5349   sctx->ctx = ctx;
5350   mexMakeArrayPersistent(sctx->ctx);
5351   */
5352   sctx->ctx = mxDuplicateArray(ctx);
5353   ierr      = SNESSetFunction(snes,r,SNESComputeFunction_Matlab,sctx);CHKERRQ(ierr);
5354   PetscFunctionReturn(0);
5355 }
5356 
5357 /*
5358    SNESComputeJacobian_Matlab - Calls the function that has been set with SNESSetJacobianMatlab().
5359 
5360    Collective on SNES
5361 
5362    Input Parameters:
5363 +  snes - the SNES context
5364 .  x - input vector
5365 .  A, B - the matrices
5366 -  ctx - user context
5367 
5368    Level: developer
5369 
5370 .keywords: SNES, nonlinear, compute, function
5371 
5372 .seealso: SNESSetFunction(), SNESGetFunction()
5373 @*/
5374 PetscErrorCode  SNESComputeJacobian_Matlab(SNES snes,Vec x,Mat A,Mat B,void *ctx)
5375 {
5376   PetscErrorCode    ierr;
5377   SNESMatlabContext *sctx = (SNESMatlabContext*)ctx;
5378   int               nlhs  = 2,nrhs = 6;
5379   mxArray           *plhs[2],*prhs[6];
5380   long long int     lx = 0,lA = 0,ls = 0, lB = 0;
5381 
5382   PetscFunctionBegin;
5383   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
5384   PetscValidHeaderSpecific(x,VEC_CLASSID,2);
5385 
5386   /* call Matlab function in ctx with arguments x and y */
5387 
5388   ierr    = PetscMemcpy(&ls,&snes,sizeof(snes));CHKERRQ(ierr);
5389   ierr    = PetscMemcpy(&lx,&x,sizeof(x));CHKERRQ(ierr);
5390   ierr    = PetscMemcpy(&lA,A,sizeof(x));CHKERRQ(ierr);
5391   ierr    = PetscMemcpy(&lB,B,sizeof(x));CHKERRQ(ierr);
5392   prhs[0] = mxCreateDoubleScalar((double)ls);
5393   prhs[1] = mxCreateDoubleScalar((double)lx);
5394   prhs[2] = mxCreateDoubleScalar((double)lA);
5395   prhs[3] = mxCreateDoubleScalar((double)lB);
5396   prhs[4] = mxCreateString(sctx->funcname);
5397   prhs[5] = sctx->ctx;
5398   ierr    = mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscSNESComputeJacobianInternal");CHKERRQ(ierr);
5399   ierr    = mxGetScalar(plhs[0]);CHKERRQ(ierr);
5400   mxDestroyArray(prhs[0]);
5401   mxDestroyArray(prhs[1]);
5402   mxDestroyArray(prhs[2]);
5403   mxDestroyArray(prhs[3]);
5404   mxDestroyArray(prhs[4]);
5405   mxDestroyArray(plhs[0]);
5406   mxDestroyArray(plhs[1]);
5407   PetscFunctionReturn(0);
5408 }
5409 
5410 /*
5411    SNESSetJacobianMatlab - Sets the Jacobian function evaluation routine and two empty Jacobian matrices
5412    vector for use by the SNES routines in solving systems of nonlinear
5413    equations from MATLAB. Here the function is a string containing the name of a MATLAB function
5414 
5415    Logically Collective on SNES
5416 
5417    Input Parameters:
5418 +  snes - the SNES context
5419 .  A,B - Jacobian matrices
5420 .  J - function evaluation routine
5421 -  ctx - user context
5422 
5423    Level: developer
5424 
5425    Developer Note:  This bleeds the allocated memory SNESMatlabContext *sctx;
5426 
5427 .keywords: SNES, nonlinear, set, function
5428 
5429 .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetFunction(), J
5430 */
5431 PetscErrorCode  SNESSetJacobianMatlab(SNES snes,Mat A,Mat B,const char *J,mxArray *ctx)
5432 {
5433   PetscErrorCode    ierr;
5434   SNESMatlabContext *sctx;
5435 
5436   PetscFunctionBegin;
5437   /* currently sctx is memory bleed */
5438   ierr = PetscNew(&sctx);CHKERRQ(ierr);
5439   ierr = PetscStrallocpy(J,&sctx->funcname);CHKERRQ(ierr);
5440   /*
5441      This should work, but it doesn't
5442   sctx->ctx = ctx;
5443   mexMakeArrayPersistent(sctx->ctx);
5444   */
5445   sctx->ctx = mxDuplicateArray(ctx);
5446   ierr      = SNESSetJacobian(snes,A,B,SNESComputeJacobian_Matlab,sctx);CHKERRQ(ierr);
5447   PetscFunctionReturn(0);
5448 }
5449 
5450 /*
5451    SNESMonitor_Matlab - Calls the function that has been set with SNESMonitorSetMatlab().
5452 
5453    Collective on SNES
5454 
5455 .seealso: SNESSetFunction(), SNESGetFunction()
5456 @*/
5457 PetscErrorCode  SNESMonitor_Matlab(SNES snes,PetscInt it, PetscReal fnorm, void *ctx)
5458 {
5459   PetscErrorCode    ierr;
5460   SNESMatlabContext *sctx = (SNESMatlabContext*)ctx;
5461   int               nlhs  = 1,nrhs = 6;
5462   mxArray           *plhs[1],*prhs[6];
5463   long long int     lx = 0,ls = 0;
5464   Vec               x  = snes->vec_sol;
5465 
5466   PetscFunctionBegin;
5467   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
5468 
5469   ierr    = PetscMemcpy(&ls,&snes,sizeof(snes));CHKERRQ(ierr);
5470   ierr    = PetscMemcpy(&lx,&x,sizeof(x));CHKERRQ(ierr);
5471   prhs[0] = mxCreateDoubleScalar((double)ls);
5472   prhs[1] = mxCreateDoubleScalar((double)it);
5473   prhs[2] = mxCreateDoubleScalar((double)fnorm);
5474   prhs[3] = mxCreateDoubleScalar((double)lx);
5475   prhs[4] = mxCreateString(sctx->funcname);
5476   prhs[5] = sctx->ctx;
5477   ierr    = mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscSNESMonitorInternal");CHKERRQ(ierr);
5478   ierr    = mxGetScalar(plhs[0]);CHKERRQ(ierr);
5479   mxDestroyArray(prhs[0]);
5480   mxDestroyArray(prhs[1]);
5481   mxDestroyArray(prhs[2]);
5482   mxDestroyArray(prhs[3]);
5483   mxDestroyArray(prhs[4]);
5484   mxDestroyArray(plhs[0]);
5485   PetscFunctionReturn(0);
5486 }
5487 
5488 /*
5489    SNESMonitorSetMatlab - Sets the monitor function from MATLAB
5490 
5491    Level: developer
5492 
5493    Developer Note:  This bleeds the allocated memory SNESMatlabContext *sctx;
5494 
5495 .keywords: SNES, nonlinear, set, function
5496 
5497 .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetFunction()
5498 */
5499 PetscErrorCode  SNESMonitorSetMatlab(SNES snes,const char *f,mxArray *ctx)
5500 {
5501   PetscErrorCode    ierr;
5502   SNESMatlabContext *sctx;
5503 
5504   PetscFunctionBegin;
5505   /* currently sctx is memory bleed */
5506   ierr = PetscNew(&sctx);CHKERRQ(ierr);
5507   ierr = PetscStrallocpy(f,&sctx->funcname);CHKERRQ(ierr);
5508   /*
5509      This should work, but it doesn't
5510   sctx->ctx = ctx;
5511   mexMakeArrayPersistent(sctx->ctx);
5512   */
5513   sctx->ctx = mxDuplicateArray(ctx);
5514   ierr      = SNESMonitorSet(snes,SNESMonitor_Matlab,sctx,NULL);CHKERRQ(ierr);
5515   PetscFunctionReturn(0);
5516 }
5517 
5518 #endif
5519