Open
Description
The "non-standard relative termination criterion" is defined as:
||A(x^k) x^{k+1} - b || <= \tau_r || A(x^k) x^k - b ||
where k
is the Picard iterate index.
In the current FGMRES implementation, that is exactly what is used: we stop the FGMRES iterations if
||A(x_m) x_{m+1} - b || <= \tau_r ||A(x_0) x_0 -b||
where m
is the FGMRES iterate. Since we take x^{k+1}_0 = x^k
(use the previous Picard iterate as the initial FGMRES iterate), this is already what is implemented.