From 0b2f1c5d352069df1bc891750087deda2d14cc9d Mon Sep 17 00:00:00 2001 From: Moritz Schauer Date: Wed, 3 Nov 2021 13:19:34 +0100 Subject: [PATCH 1/2] Bump version for IDR fix (#305) --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 3a0fd7a6..17e24976 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "IterativeSolvers" uuid = "42fd0dbc-a981-5370-80f2-aaf504508153" -version = "0.9.1" +version = "0.9.2" [deps] LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" From b46b58779abdc3535b97042541ecaf4ac02a12b1 Mon Sep 17 00:00:00 2001 From: Moritz Schauer Date: Tue, 23 Nov 2021 22:30:19 +0100 Subject: [PATCH 2/2] Docfix minres (#306) (#307) preconditions are mentioned, but not implemented --- src/minres.jl | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/minres.jl b/src/minres.jl index 309c4d25..0b1f9e3c 100644 --- a/src/minres.jl +++ b/src/minres.jl @@ -183,8 +183,6 @@ Solve Ax = b for (skew-)Hermitian matrices A using MINRES. !!! note The residual is computed only approximately. - `maxiter::Int = size(A, 2)`: maximum number of iterations; -- `Pl`: left preconditioner; -- `Pr`: right preconditioner; - `log::Bool = false`: keep track of the residual norm in each iteration; - `verbose::Bool = false`: print convergence information during the iterations.