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 cf63b0f commit 68872c1Copy full SHA for 68872c1
src/inversemap.jl
@@ -49,11 +49,11 @@ LinearAlgebra.ishermitian(imap::InverseMap) = ishermitian(imap.A)
49
LinearAlgebra.isposdef(imap::InverseMap) = isposdef(imap.A)
50
51
# Two separate methods to deal with method ambiguities
52
-function _unsafe_mul!(y::AbstractVector, imap::InverseMap, x::AbstractVector)
+function _unsafe_mul!(y, imap::InverseMap, x::AbstractVector)
53
imap.ldiv!(y, imap.A, x)
54
return y
55
end
56
-function _unsafe_mul!(y::AbstractMatrix, imap::InverseMap, x::AbstractMatrix)
+function _unsafe_mul!(y, imap::InverseMap, x::AbstractMatrix)
57
58
59
0 commit comments