Skip to content

Commit 998b801

Browse files
committed
Formatter update
1 parent 3e4247e commit 998b801

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

test/structural_transformation/bareiss.jl

+9-8
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,13 @@ function det_bareiss!(M)
1616
end
1717

1818
@testset "bareiss tests" begin
19-
# copy gives a dense matrix
20-
@testset "bareiss tests: $T" for T in (copy, sparse)
21-
# matrix determinent pairs
22-
for (M, d) in ((BigInt[9 1 8 0; 0 0 8 7; 7 6 8 3; 2 9 7 7], -1),
23-
(BigInt[1 big(2)^65+1; 3 4], 4 - 3 * (big(2)^65 + 1)))
24-
# test that the determinent was correctly computed
25-
@test det_bareiss!(T(M)) == d
19+
# copy gives a dense matrix
20+
@testset "bareiss tests: $T" for T in (copy, sparse)
21+
# matrix determinent pairs
22+
for (M, d) in ((BigInt[9 1 8 0; 0 0 8 7; 7 6 8 3; 2 9 7 7], -1),
23+
(BigInt[1 big(2)^65+1; 3 4], 4 - 3 * (big(2)^65 + 1)))
24+
# test that the determinent was correctly computed
25+
@test det_bareiss!(T(M)) == d
26+
end
2627
end
27-
end end
28+
end

0 commit comments

Comments
 (0)