Skip to content

Commit 9331f7a

Browse files
committed
set abstol/reltol in history
1 parent 5839328 commit 9331f7a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/minres.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,8 @@ function minres!(x, A, b;
216216
maxiter::Int = size(A, 2),
217217
initially_zero::Bool = false)
218218
history = ConvergenceHistory(partial = !log)
219-
history[:tol] = tol
219+
history[:abstol] = abstol
220+
history[:reltol] = reltol
220221
log && reserve!(history, :resnorm, maxiter)
221222

222223
# TODO: Deprecations introduced in v0.8

0 commit comments

Comments
 (0)