CongruenceClosure.BlDis
Block disequalities: a term t1 is mapped to a set of terms that have a different block than t1. It is allowed to contain terms that are not present in the data structure, so we shouldn't assume that all terms in bldis are present in the union find!
val hash : t -> int
val empty : 'a TMap.t
val is_empty : 'a TMap.t -> bool
Add disequalities bl(t1) != bl(t2) and bl(t2) != bl(t1).
params:
t1-> a term that is not necessarily present in the data structure
tlist: a list of representative terms
For each term t2 in tlist, it adds the disequality t1 != t2 to diseqs.
val element_closure :
prop list ->
BatSet.Make(Goblint_lib__UnionFind.T).t BatMap.Make(Z).t
BatMap.Make(Goblint_lib__UnionFind.T).t ->
(Goblint_lib__UnionFind.term * Goblint_lib__UnionFind.term) list
For each block disequality bl(t1) != bl(t2) we add all disequalities that follow from equalities. I.e., if t1 = z1 + t1' and t2 = z2 + t2', then we add the disequaity bl(t1') != bl(t2').