SNESConvergedReasonViewSet#
Sets an ADDITIONAL function that is to be used at the end of the nonlinear solver to display the convergence reason of the nonlinear solver.
Synopsis#
#include "petscsnes.h"
PetscErrorCode SNESConvergedReasonViewSet(SNES snes, PetscErrorCode (*f)(SNES snes, void *vctx), void *vctx, PetscErrorCode (*reasonviewdestroy)(void **vctx))
Logically Collective
Input Parameters#
snes - the
SNES
contextf - the
SNESConvergedReason
view functionvctx - [optional] user-defined context for private data for the
SNESConvergedReason
view function (useNULL
if no context is desired)reasonviewdestroy - [optional] routine that frees the context (may be
NULL
)
Calling sequence of f
#
snes - the
SNES
contextvctx - [optional] user-defined context for private data for the function
Calling sequence of reasonviewerdestroy
#
vctx - [optional] user-defined context for private data for the function
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.
Note#
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#
SNES: Nonlinear Solvers, SNES
, SNESSolve()
, SNESConvergedReason
, SNESGetConvergedReason()
, SNESConvergedReasonView()
, SNESConvergedReasonViewCancel()
Level#
intermediate
Location#
Examples#
Index of all SNES routines
Table of Contents for all manual pages
Index of all manual pages