diff --git a/src/LimitedLDLFactorizations.jl b/src/LimitedLDLFactorizations.jl index 767050b..9ec3b12 100644 --- a/src/LimitedLDLFactorizations.jl +++ b/src/LimitedLDLFactorizations.jl @@ -170,7 +170,7 @@ function LimitedLDLFactorization( return LimitedLDLFactorization(T, P, memory, α, n, nnz(T), Tf) end -LimitedLDLFactorization(T::SparseMatrixCSC{Tv, Ti}; kwargs...) where {Tv <: Number, Ti <: Integer} = +LimitedLDLFactorization(T::SparseMatrixCSC{Tv, Ti}; kwargs...) where {Tv <: Number, Ti <: Integer} = LimitedLDLFactorization(T, Tv; kwargs...) # Here T is the lower triangle of A. diff --git a/test/runtests.jl b/test/runtests.jl index 820e41e..0eb3872 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -257,4 +257,4 @@ end ldiv!(LLDL, b) @test b ≈ sol -end \ No newline at end of file +end