Skip to content

Commit a1e154f

Browse files
Only sparse ldlt has check
Now it makes sense...
1 parent 8a626cd commit a1e154f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ArrayInterface.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ function ldlt_instance(A::Matrix{T}) where {T}
505505
return ldlt(SymTridiagonal(similar(A, 0, 0)))
506506
end
507507
function ldlt_instance(A::SparseMatrixCSC)
508-
ldlt(sparse(similar(A, 1, 1)))
508+
ldlt(sparse(similar(A, 1, 1)), check=false)
509509
end
510510

511511
"""

0 commit comments

Comments
 (0)