diff --git a/docs/src/preconditioners.md b/docs/src/preconditioners.md index 26026a1f6..8030f9697 100644 --- a/docs/src/preconditioners.md +++ b/docs/src/preconditioners.md @@ -205,7 +205,7 @@ using RandomizedPreconditioners, Krylov  = NystromSketch(A, k, r) P = NystromPreconditioner(Â, μ) -x, stats = cg(A + μ*I, b; M=P) +x, stats = cg(A + μ*I, b; M=P, ldiv=true) P⁻¹ = NystromPreconditionerInverse(Â, μ) x, stats = cg(A + μ*I, b; M=P⁻¹)