Skip to content

Commit 0894dba

Browse files
no check on QR SVD
1 parent 117a188 commit 0894dba

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
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.3.0"
3+
version = "7.3.1"
44

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

src/ArrayInterface.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ end
494494

495495
# Could be optimized but this should work for any real case.
496496
function qr_instance(jac_prototype::SparseMatrixCSC)
497-
qr(sparse(rand(1,1)), check = false)
497+
qr(sparse(rand(1,1)))
498498
end
499499

500500
"""
@@ -505,11 +505,11 @@ Returns the number.
505505
qr_instance(a::Number) = a
506506

507507
"""
508-
qr_instance(a::Any) -> qr(a, check=false)
508+
qr_instance(a::Any) -> qr(a)
509509
510510
Returns the number.
511511
"""
512-
qr_instance(a::Any) = qr(a, check = false)
512+
qr_instance(a::Any) = qr(a)# check = false)
513513

514514
"""
515515
svd_instance(A) -> qr_factorization_instance
@@ -529,11 +529,11 @@ Returns the number.
529529
svd_instance(a::Number) = a
530530

531531
"""
532-
svd_instance(a::Any) -> qr(a, check=false)
532+
svd_instance(a::Any) -> svd(a)
533533
534534
Returns the number.
535535
"""
536-
svd_instance(a::Any) = svd(a, check = false)
536+
svd_instance(a::Any) = svd(a) #check = false)
537537

538538
"""
539539
safevec(v)

0 commit comments

Comments
 (0)