We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
R.of_elt
1 parent 8af2e49 commit 004e3aeCopy full SHA for 004e3ae
src/domain/disjointDomain.ml
@@ -190,9 +190,10 @@ module ProjectiveSetPairwiseMeet (E: Lattice.S) (B: MayEqualSetDomain with type
190
let meet m1 m2 =
191
let meet_buckets b1 b2 acc =
192
B.fold (fun e1 acc ->
193
+ let r1 = R.of_elt e1 in
194
B.fold (fun e2 acc ->
195
(* If they have the same representative, we use the normal meet within this bucket *)
- if R.equal (R.of_elt e1) (R.of_elt e2) then
196
+ if R.equal r1 (R.of_elt e2) then
197
try
198
let m = E.meet e1 e2 in
199
if not (E.is_bot m) then
0 commit comments