From 02048c30da23ca19990b3cfbee64dd3580daf5dd Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Thu, 24 Oct 2024 14:15:51 +0000 Subject: [PATCH] add issingular test --- test/linalg.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/linalg.jl b/test/linalg.jl index cd778aa5..dddbcd56 100644 --- a/test/linalg.jl +++ b/test/linalg.jl @@ -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)]))