Skip to content

Commit

Permalink
fix type solve function
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffroyleconte authored and amontoison committed Oct 18, 2023
1 parent 6234ca8 commit 58f1e47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LimitedLDLFactorizations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@ end

import Base.(\)
(\)(LLDL::LimitedLDLFactorization, b::AbstractVector) = ldiv!(LLDL, copy(b))
(\)(LLDL::LimitedLDLFactorization, B::AbstractVecOrMat) = ldiv!(LLDL, copy(B))
(\)(LLDL::LimitedLDLFactorization, B::AbstractMatrix) = ldiv!(LLDL, copy(B))

import LinearAlgebra.ldiv!
function ldiv!(LLDL::LimitedLDLFactorization, b::AbstractVector)
Expand Down

0 comments on commit 58f1e47

Please sign in to comment.