We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1af5aac commit 13c034cCopy full SHA for 13c034c
src/preconditioners.jl
@@ -26,6 +26,6 @@ struct InvPreconditioner{T}
26
end
27
28
Base.eltype(A::InvPreconditioner) = Base.eltype(A.P)
29
-LinearAlgebra.ldiv!(A::InvPreconditioner, x) = mul!(x, A.P, x)
+#LinearAlgebra.ldiv!(A::InvPreconditioner, x) = mul!(x, A.P, x)
30
LinearAlgebra.ldiv!(y, A::InvPreconditioner, x) = mul!(y, A.P, x)
31
LinearAlgebra.mul!(y, A::InvPreconditioner, x) = ldiv!(y, A.P, x)
0 commit comments