From e8b795c6586cea53284597e8217124ee03631f4e Mon Sep 17 00:00:00 2001 From: Harmen Stoppels Date: Fri, 19 Mar 2021 13:22:21 +0100 Subject: [PATCH] Fix a typo --- src/cg.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cg.jl b/src/cg.jl index 03ffc1c9..5c38c5ea 100644 --- a/src/cg.jl +++ b/src/cg.jl @@ -185,7 +185,7 @@ cg(A, b; kwargs...) = cg!(zerox(A, b), A, b; initially_zero = true, kwargs...) is approximately the residual in the `k`th iteration. !!! note The true residual norm is never explicitly computed during the iterations - for performance reasons; it may have accumulate rounding errors. + for performance reasons; it may accumulate rounding errors. - `maxiter::Int = size(A,2)`: maximum number of iterations; - `verbose::Bool = false`: print method information; - `log::Bool = false`: keep track of the residual norm in each iteration.