You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actually, we are using only the atol parameter for the krylov solvers and the tol parameter is left to its default value 1.0e-5.
However, the exit condition is defined as follow (in lgmres),
r_norm <= max(atol, tol * b_norm)
therefore, the condition on atol may not be satisfied, but the condition on tol with its default value maybe. We should define what kind of behavior we wish to have here
The text was updated successfully, but these errors were encountered:
Actually, we are using only the
atol
parameter for the krylov solvers and thetol
parameter is left to its default value 1.0e-5.However, the exit condition is defined as follow (in lgmres),
therefore, the condition on
atol
may not be satisfied, but the condition ontol
with its default value maybe. We should define what kind of behavior we wish to have hereThe text was updated successfully, but these errors were encountered: