We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59f4d42 commit f3c3776Copy full SHA for f3c3776
1 file changed
test/structured.jl
@@ -51,7 +51,7 @@ end;
51
for (mb, nb) in [(10, 20), (20, 10)], lb in 0:3, ub in 0:3, _ in 1:10
52
rows = rand(1:5, mb)
53
cols = rand(1:5, nb)
54
- A = BlockBandedMatrix{Float64}(rand(sum(rows), sum(cols)), rows, cols, (l, u))
+ A = BlockBandedMatrix{Float64}(rand(sum(rows), sum(cols)), rows, cols, (lb, ub))
55
test_structured_coloring_decompression(A)
56
end
57
end;
0 commit comments