Skip to content

Commit

Permalink
rank on Sparse issues fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
krcools committed Oct 10, 2024
1 parent 5b52e37 commit 67496e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/test_basis.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion test/test_mult.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 67496e0

Please sign in to comment.