Skip to content

Commit d7da9c7

Browse files
small bugfix assert_rref
1 parent 37190f4 commit d7da9c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cdomains/affineEquality/sparseImplementation/listMatrix.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ module ListMatrix: AbstractMatrix =
226226
| [] -> true
227227
| (pr, pc)::ps ->
228228
let target = if pr <> i then A.zero else A.one in
229-
if V.nth v pc <> target then false else validate_vec ps
229+
if V.nth v pc <>: target then false else validate_vec ps
230230
in if validate_vec pivot_l then validate vs (i+1) else raise (Invalid_argument "Matrix not in rref: pivot column not empty!")
231231
in validate m 0
232232

0 commit comments

Comments
 (0)