Skip to content

Commit f44f2eb

Browse files
committed
Formatting
1 parent fe984fb commit f44f2eb

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

tests/unit/cdomains/affineEqualityDomain/sparseImplementation/sparseMatrixImplementationTest.ml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -241,25 +241,25 @@ let is_covered_big _ =
241241
[int 0; int 0; int 1; frac (-1) 3; frac 1 3; int 0; frac 1 3];
242242
[int 0; int 0; int 0; int 0; int 0; int 1; int 0]] in
243243

244-
let result = Matrix.is_covered_by m1 m2 in
245-
assert_bool "Matrix m1 is covered by m2, but was false" (result)
244+
let result = Matrix.is_covered_by m1 m2 in
245+
assert_bool "Matrix m1 is covered by m2, but was false" (result)
246246

247-
let tests =
248-
"SparseMatrixImplementationTest"
249-
>::: [
250-
"can solve a standard normalization" >:: standard_normalize;
251-
"does sort already reduzed" >:: does_just_sort;
252-
"does eliminate dependent rows" >:: does_eliminate_dependent_rows;
253-
(* Looks like the tests are deadlock or inifinite execution when those are activated. *)
254-
(*"can handle float domain" >:: does_handle_floats;*)
255-
(*"can handle fraction domain" >:: does_handle_fractions;*)
256-
"does negate negative matrix" >:: does_negate_negative;
257-
"does not change already normalized matrix" >:: does_not_change_normalized_matrix;
258-
"m1 is covered by m2" >:: is_covered_by_simple;
259-
"m1 is covered by m2 with vector in first row" >:: is_covered_by_vector_first_row;
260-
"zero vector is covered by m2" >:: is_zero_vec_covered;
261-
"m1 is not covered by m2" >:: is_not_covered;
262-
"m1 is covered by m2 with big matrix" >:: is_covered_big;
263-
]
247+
let tests =
248+
"SparseMatrixImplementationTest"
249+
>::: [
250+
"can solve a standard normalization" >:: standard_normalize;
251+
"does sort already reduzed" >:: does_just_sort;
252+
"does eliminate dependent rows" >:: does_eliminate_dependent_rows;
253+
(* Looks like the tests are deadlock or inifinite execution when those are activated. *)
254+
(*"can handle float domain" >:: does_handle_floats;*)
255+
(*"can handle fraction domain" >:: does_handle_fractions;*)
256+
"does negate negative matrix" >:: does_negate_negative;
257+
"does not change already normalized matrix" >:: does_not_change_normalized_matrix;
258+
"m1 is covered by m2" >:: is_covered_by_simple;
259+
"m1 is covered by m2 with vector in first row" >:: is_covered_by_vector_first_row;
260+
"zero vector is covered by m2" >:: is_zero_vec_covered;
261+
"m1 is not covered by m2" >:: is_not_covered;
262+
"m1 is covered by m2 with big matrix" >:: is_covered_big;
263+
]
264264

265265
let () = run_test_tt_main tests

0 commit comments

Comments
 (0)