Skip to content

Commit 8f4734b

Browse files
author
Pawel Latawiec
committed
Bugfix: materialize of sparse matrix for julia 1.6
1 parent 5f0a59b commit 8f4734b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/lal.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ function test_lal_identities(ld)
108108
@test ld.A * Vn ld.V * ld.L * ld.U
109109
# 3.13
110110
if !D_singular
111-
@test ld.L[1:end-1, end] (ld.D \ Γn) * transpose(ld.U) * (Γn \ transpose(ld.Q)) * ld.A * ld.P[:, end]
111+
@test ld.L[1:end-1, end] (ld.D \ Matrix(Γn)) * transpose(ld.U) * (Γn \ Matrix(transpose(ld.Q))) * ld.A * ld.P[:, end]
112112
end
113113
# 3.14, 3.26
114114
@test ld.E transpose(ld.Q) * ld.A * ld.P

0 commit comments

Comments
 (0)