File tree 1 file changed +9
-8
lines changed
test/structural_transformation
1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,13 @@ function det_bareiss!(M)
16
16
end
17
17
18
18
@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
26
27
end
27
- end end
28
+ end
You can’t perform that action at this time.
0 commit comments