Skip to content

Commit 2a9cedf

Browse files
LDLt has no check
LDLt has no check
1 parent 454be68 commit 2a9cedf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ArrayInterface.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -502,10 +502,10 @@ Returns an instance of the LDLT factorization object with the correct type
502502
cheaply.
503503
"""
504504
function ldlt_instance(A::Matrix{T}) where {T}
505-
return ldlt(SymTridiagonal(similar(A, 0, 0)), check = false)
505+
return ldlt(SymTridiagonal(similar(A, 0, 0)))
506506
end
507507
function ldlt_instance(A::SparseMatrixCSC)
508-
ldlt(sparse(similar(A, 1, 1)), check = false)
508+
ldlt(sparse(similar(A, 1, 1)))
509509
end
510510

511511
"""

0 commit comments

Comments
 (0)