Skip to content

Commit 37190f4

Browse files
assert_rref
1 parent 012104f commit 37190f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cdomains/affineEquality/sparseImplementation/listMatrix.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ module ListMatrix: AbstractMatrix =
151151

152152
let init_with_vec v =
153153
[v]
154-
154+
155155
let normalize m =
156156
let col_count = num_cols m in
157157
let dec_mat_2D (m : t) (row_idx : int) (col_idx : int) : t =
@@ -268,7 +268,7 @@ module ListMatrix: AbstractMatrix =
268268
Some (insert_v_according_to_piv m normalized_v idx pivot_positions)
269269

270270
let rref_vec m v = Timing.wrap "rref_vec" (rref_vec m) v
271-
271+
272272
(* This should yield the same result as appending m2 to m1, normalizing and removing zero rows. However, it is usually faster. *)
273273
(* Both input matrices are assumed to be in rref form *)
274274
let rref_matrix (m1 : t) (m2 : t) =

0 commit comments

Comments
 (0)