Skip to content

Commit

Permalink
add issingular test
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Oct 24, 2024
1 parent decfe35 commit 02048c3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/linalg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,5 @@ mat = Array(va)
@test size(va') == (size(va', 1), size(va', 2)) == (size(va, 2), size(va, 1))
@test all(va'[i] == mat'[i] for i in eachindex(mat'))
@test Array(va') == mat'

@test !ArrayInterface.issingular(VectorOfArray([rand(2),rand(2)]))

0 comments on commit 02048c3

Please sign in to comment.