#include "slepcnep.h" PetscErrorCode NEPSetConvergenceTest(NEP nep,NEPConv conv)Logically Collective
nep | - nonlinear eigensolver context obtained from NEPCreate() | |
conv | - the type of convergence test |
-nep_conv_abs | - Sets the absolute convergence test | |
-nep_conv_rel | - Sets the convergence test relative to the eigenvalue | |
-nep_conv_user | - Selects the user-defined convergence test |
NEP_CONV_ABS | - absolute error ||r|| | |
NEP_CONV_REL | - error relative to the eigenvalue l, ||r||/|l| | |
NEP_CONV_NORM | - error relative matrix norms, ||r||/sum_i(|f_i(l)|*||A_i||) | |
NEP_CONV_USER | - function set by NEPSetConvergenceTestFunction() |