File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 22
33Today's values are
44``` math
5- C_e = 1.0, C_r = 20.0, r_{max} = .5
5+ C_e = 1.0, C_r = 20.0, r_{max} = .5, litmax = 1000
66```
77
88Floating point roundoff is
@@ -38,12 +38,15 @@ also terminate the iteration if
3838``` math
3939\| r_{new} \| \ge r_{max} \| r_{old} \|
4040```
41- even if the small residual condition is not satisfied.
41+ even if the small residual condition is not satisfied. You can also
42+ limit the number of IR iterations to manage stagnation.
43+ Higham [ higham97] @cite recomments a limit of ``` litmax = 5 ``` . Our default
44+ is ```litmax = 1000``, which is essentially infinite in this context.
4245
4346I am still playing with the termination criteria and the iteration
4447counts and timings could grow or shrink as I do that.
4548
46- You can use the ``` update_parms ``` to
49+ You can use the __ update_parms __ command to
4750change $C_r$, $C_e$ and $r_ {max}$ if you must. I do not advise that.
4851Anyhow, here are the docstrings.
4952```
You can’t perform that action at this time.
0 commit comments