Skip to content

Commit 8a626cd

Browse files
Merge pull request #415 from JuliaArrays/ChrisRackauckas-patch-2
LDLt has no check
2 parents 454be68 + 6effc7d commit 8a626cd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ArrayInterface"
22
uuid = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
3-
version = "7.4.5"
3+
version = "7.4.6"
44

55
[deps]
66
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"

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)