Skip to content

Commit

Permalink
Bugfix: materialize of sparse matrix for julia 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Pawel Latawiec committed Aug 21, 2022
1 parent 5f0a59b commit 8f4734b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/lal.jl
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ function test_lal_identities(ld)
@test ld.A * Vn ld.V * ld.L * ld.U
# 3.13
if !D_singular
@test ld.L[1:end-1, end] (ld.D \ Γn) * transpose(ld.U) * (Γn \ transpose(ld.Q)) * ld.A * ld.P[:, end]
@test ld.L[1:end-1, end] (ld.D \ Matrix(Γn)) * transpose(ld.U) * (Γn \ Matrix(transpose(ld.Q))) * ld.A * ld.P[:, end]
end
# 3.14, 3.26
@test ld.E transpose(ld.Q) * ld.A * ld.P
Expand Down

0 comments on commit 8f4734b

Please sign in to comment.