int SNESConverged_EQ_LS(SNES snes,double xnorm,double pnorm,double fnorm,void *dummy)Collective on SNES
snes | - the SNES context |
xnorm | - 2-norm of current iterate |
pnorm | - 2-norm of current step |
fnorm | - 2-norm of function |
dummy | - unused context |
2 | - if ( fnorm < atol ), |
3 | - if ( pnorm < xtol*xnorm ), |
4 | - if ( fnorm < rtol*fnorm0 ), |
-2 | - if ( nfct > maxf ), |
0 | - otherwise, |
where
maxf | - maximum number of function evaluations, set with SNESSetTolerances() |
nfct | - number of function evaluations, |
atol | - absolute function norm tolerance, set with SNESSetTolerances() |
rtol | - relative function norm tolerance, set with SNESSetTolerances() |
Location: src/snes/interface/snesut.c
SNES Index
Table of Contents