PETSc version 3.17.5
Fix/Edit manual page

SNESConvergedReasonViewSet

Sets an ADDITIONAL function that is to be used at the end of the nonlinear solver to display the conver reason of the nonlinear solver.

Synopsis

#include "petscsnes.h"  
PetscErrorCode  SNESConvergedReasonViewSet(SNES snes,PetscErrorCode (*f)(SNES,void*),void *vctx,PetscErrorCode (*reasonviewdestroy)(void**))
Logically Collective on SNES

Input Parameters

snes - the SNES context
f - the snes converged reason view function
vctx - [optional] user-defined context for private data for the snes converged reason view routine (use NULL if no context is desired)
reasonviewdestroy - [optional] routine that frees reasonview context (may be NULL)

Options Database Keys

-snes_converged_reason - sets a default SNESConvergedReasonView()
-snes_converged_reason_view_cancel - cancels all converged reason viewers that have been hardwired into a code by calls to SNESConvergedReasonViewSet(), but does not cancel those set via the options database.

Notes

Several different converged reason view routines may be set by calling SNESConvergedReasonViewSet() multiple times; all will be called in the order in which they were set.

See Also

SNESConvergedReasonView(), SNESConvergedReasonViewCancel()

Level

intermediate

Location

src/snes/interface/snes.c

Examples

src/snes/tutorials/ex6.c.html

Index of all SNES routines
Table of Contents for all manual pages
Index of all manual pages