File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11name = " ArrayInterface"
22uuid = " 4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
3- version = " 7.3.0 "
3+ version = " 7.3.1 "
44
55[deps ]
66Adapt = " 79e6a3ab-5dfb-504d-930d-738a2a938a0e"
Original file line number Diff line number Diff line change 494494
495495# Could be optimized but this should work for any real case.
496496function qr_instance (jac_prototype:: SparseMatrixCSC )
497- qr (sparse (rand (1 ,1 )), check = false )
497+ qr (sparse (rand (1 ,1 )))
498498end
499499
500500"""
@@ -505,11 +505,11 @@ Returns the number.
505505qr_instance (a:: Number ) = a
506506
507507"""
508- qr_instance(a::Any) -> qr(a, check=false )
508+ qr_instance(a::Any) -> qr(a)
509509
510510Returns 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.
529529svd_instance (a:: Number ) = a
530530
531531"""
532- svd_instance(a::Any) -> qr(a, check=false )
532+ svd_instance(a::Any) -> svd(a )
533533
534534Returns 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)
You can’t perform that action at this time.
0 commit comments