From 67496e0d0999e7904be91ed4f53930a4d1ff8704 Mon Sep 17 00:00:00 2001 From: Kristof Cools Date: Thu, 10 Oct 2024 17:47:14 +0200 Subject: [PATCH] rank on Sparse issues fixed --- test/test_basis.jl | 2 +- test/test_mult.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_basis.jl b/test/test_basis.jl index a85c7937..64a7d0ef 100644 --- a/test/test_basis.jl +++ b/test/test_basis.jl @@ -20,7 +20,7 @@ for T in [Float32, Float64] @show BEAST.defaultquadstrat(hypersingular, X, X) # @show @which BEAST.defaultquadstrat(hypersingular, X, X) @time N = assemble(hypersingular, X, X) - @time I = assemble(identityop, X, X) + @time I = Matrix(assemble(identityop, X, X)) @test size(N) == (numfunctions(X), numfunctions(X)) @test size(I) == (numfunctions(X), numfunctions(X)) diff --git a/test/test_mult.jl b/test/test_mult.jl index 16927330..4c5399df 100644 --- a/test/test_mult.jl +++ b/test/test_mult.jl @@ -22,7 +22,7 @@ for T in [Float32, Float64] divX = divergence(X) Id = BEAST.Identity() - DD = assemble(Id, divX, divX) + DD = Matrix(assemble(Id, divX, divX)) @test rank(DD) == 7 L = divX * Conn for sh in L.fns[1]