Skip to content

Commit

Permalink
Small fix in join
Browse files Browse the repository at this point in the history
  • Loading branch information
Alina Weber committed Jan 4, 2024
1 parent c8393ff commit 3764ad7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/cdomains/apron/linearTwoVarEqualityDomain.apron.ml
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,8 @@ struct

let join a b =
let join_d ad bd =
(*use copy of ad because result is later saved in there*)
let ad = Array.copy ad in
(*This is the table which is later grouped*)
let table = BatList.map2i (fun i a b -> (i,a,b)) (Array.to_list ad) (Array.to_list bd) in
let const_offset t = Tuple2.second t in
Expand Down

0 comments on commit 3764ad7

Please sign in to comment.