CongruenceClosure.Disequalities
val hash : t -> int
val empty : 'a TMap.t
val is_empty : 'a TMap.t -> bool
Returns a list of tuples, which each represent a disequality
Returns a list of tuples, which each represent a disequality
adds a mapping v -> r -> size -> v'
to the map, or if there are already elements in v -> r -> ..
then v' is added to the previous set
val comp_map :
((Goblint_lib__UnionFind.term * ZMap.key) * int) TUF.ValMap.t ->
t * ((Goblint_lib__UnionFind.term * ZMap.key) * int) TUF.ValMap.t
Map of partition, transform union find to a map of type V -> Z -> V set with reference variable |-> offset |-> all terms that are in the union find with this ref var and offset.
val comp_t :
((Goblint_lib__UnionFind.term * Z.t) * int) TUF.ValMap.t ->
TUF.ValMap.key ->
(TUF.ValMap.key * Z.t) list
Find all elements that are in the same equivalence class as t.
val get_args :
((Goblint_lib__UnionFind.term * ZMap.key) * int) TUF.ValMap.t ->
((Goblint_lib__UnionFind.term * ZMap.key) * int) TUF.ValMap.t
* t
* (Goblint_lib__UnionFind.term * Z.t) list ZMap.t TMap.t
Returns: "arg" map:
maps each representative term t to a map that maps an integer Z to a list of representatives t' of v where *(v + z') is in the representative class of t.
It basically maps each state in the automata to its predecessors.
val check_neq :
('a * (T.t * Z.t) list ZMap.t TMap.t) ->
(T.t * T.t * Z.t) list ->
(TMap.key * 'b ZMap.t) ->
(T.t * T.t * Z.t) list
Find all disequalities of the form t1 != z2-z1 + t2 that can be inferred from equalities of the form *(z1 + t1) = *(z2 + t2).
val check_neq_bl :
('a * (T.t * Z.t) list ZMap.t TMap.t) ->
(T.t * T.t * Z.t) list ->
(TMap.key * TSet.t) ->
(T.t * T.t * Z.t) list
Find all disequalities of the form t1 != z2-z1 + t2 that can be inferred from block equalities of the form bl( *(z1 + t1) ) = bl( *(z2 + t2) ).
Initialize the list of disequalities taking only implicit dis-equalities into account.
Returns: List of dis-equalities implied by the equalities.
val init_neg_block_diseq :
('a * TSet.t TMap.t * 'b * (T.t * Z.t) list ZMap.t TMap.t) ->
(T.t * T.t * Z.t) list
Initialize the list of disequalities taking only implicit dis-equalities into account.
Returns: List of dis-equalities implied by the block disequalities.
val init_list_neq :
((Goblint_lib__UnionFind.term * Z.t) * int) TUF.ValMap.t ->
(TUF.ValMap.key * TUF.ValMap.key * Z.t) list ->
((Goblint_lib__UnionFind.term * Z.t) * int) TUF.ValMap.t
* (Goblint_lib__UnionFind.term * Goblint_lib__UnionFind.term * Z.t) list
Initialize the list of disequalities taking explicit dis-equalities into account.
Parameters: union-find partition, explicit disequalities.
Returns: list of normalized provided dis-equalities
val propagate_neq :
('a * TSet.t ZMap.t TMap.t * (T.t * Z.t) list ZMap.t TMap.t * t) ->
BlDis.t ->
(T.t * T.t * ZMap.key) list ->
t
Parameter: list of disequalities (t1, t2, z), where t1 and t2 are roots.
Returns: map `neq` where each representative is mapped to a set of representatives it is not equal to.
Produces a string for the number used as offset; helper function for show* functions below.
val element_closure :
(Goblint_lib__UnionFind.term * Goblint_lib__UnionFind.term * Z.t) list ->
BatSet.Make(Goblint_lib__UnionFind.T).t BatMap.Make(Z).t
BatMap.Make(Goblint_lib__UnionFind.T).t ->
'a ->
(Goblint_lib__UnionFind.term * Goblint_lib__UnionFind.term * Z.t) list
For each disequality t1 != z + t2 we add all disequalities that follow from equalities. I.e., if t1 = z1 + t1' and t2 = z2 + t2', then we add the disequaity t1' != z + z2 - z1 + t2'.