LMEMonitorSet#
Sets an ADDITIONAL function to be called at every iteration to monitor convergence.
Synopsis#
#include "slepclme.h"
PetscErrorCode LMEMonitorSet(LME lme,LMEMonitorFn *monitor,void *mctx,PetscCtxDestroyFn *monitordestroy)
Logically Collective
Input Parameters#
lme - the linear matrix equation solver context
monitor - pointer to function (if this is
NULL, it turns off monitoring), seeLMEMonitorFnmctx - [optional] context for private data for the monitor routine (use
NULLif no context is desired)monitordestroy - [optional] routine that frees monitor context (may be
NULL), seePetscCtxDestroyFnfor the calling sequence
Options Database Keys#
-lme_monitor - print the error estimate
-lme_monitor draw::draw_lg - sets line graph monitor for the error estimate
-lme_monitor_cancel - cancels all monitors that have been hardwired into a code by calls to
LMEMonitorSet(), but does not cancel those set via the options database
Notes#
The options database option -lme_monitor and related options are the easiest way
to turn on LME iteration monitoring.
LMEMonitorRegister() provides a way to associate an options database key with LME
monitor function.
Several different monitoring routines may be set by calling LMEMonitorSet() multiple
times; all will be called in the order in which they were set.
Fortran Note#
Only a single monitor function can be set for each LME object.
See Also#
LME: Linear Matrix Equation, LMEMonitorDefault(), LMEMonitorDefaultDrawLG(), LMEMonitorCancel()
Level#
intermediate
Location#
Index of all LME routines Table of Contents for all manual pages Index of all manual pages