Module type ExplicitTrace.FiniteSet
A powerset domain of traces, with bottom = empty and join = union
include AbstractDomain.FiniteSetS
include IStdlib.PrettyPrintable.PPSet
include IStdlib.IStd.Caml.Set.S
val empty : tval is_empty : t -> boolval mem : elt -> t -> boolval add : elt -> t -> tval singleton : elt -> tval remove : elt -> t -> tval union : t -> t -> tval inter : t -> t -> tval disjoint : t -> t -> boolval diff : t -> t -> tval compare : t -> t -> intval equal : t -> t -> boolval subset : t -> t -> boolval iter : (elt -> unit) -> t -> unitval map : (elt -> elt) -> t -> tval fold : (elt -> 'a -> 'a) -> t -> 'a -> 'aval for_all : (elt -> bool) -> t -> boolval exists : (elt -> bool) -> t -> boolval filter : (elt -> bool) -> t -> tval filter_map : (elt -> elt option) -> t -> tval partition : (elt -> bool) -> t -> t * tval cardinal : t -> intval elements : t -> elt listval min_elt : t -> eltval min_elt_opt : t -> elt optionval max_elt : t -> eltval max_elt_opt : t -> elt optionval choose : t -> eltval choose_opt : t -> elt optionval split : elt -> t -> t * bool * tval find : elt -> t -> eltval find_opt : elt -> t -> elt optionval find_first : (elt -> bool) -> t -> eltval find_first_opt : (elt -> bool) -> t -> elt optionval find_last : (elt -> bool) -> t -> eltval find_last_opt : (elt -> bool) -> t -> elt optionval of_list : elt list -> tval to_seq_from : elt -> t -> elt Stdlib.Seq.tval to_seq : t -> elt Stdlib.Seq.tval add_seq : elt Stdlib.Seq.t -> t -> tval of_seq : elt Stdlib.Seq.t -> t
val is_singleton_or_more : t -> elt IStdlib.IContainer.singleton_or_more
include IStdlib.PrettyPrintable.PrintableType with type t := t
val pp : IStdlib.PrettyPrintable.F.formatter -> t -> unit
val pp_element : IStdlib.PrettyPrintable.F.formatter -> elt -> unit
include AbstractDomain.WithBottom with type t := t
include AbstractDomain.S
include AbstractDomain.NoJoin
include IStdlib.PrettyPrintable.PrintableType
val pp : IStdlib.PrettyPrintable.F.formatter -> t -> unit
val bottom : tThe bottom value of the domain.
val is_bottom : t -> boolReturn true if this is the bottom value
val with_callsite : t -> CallSite.t -> tPush given callsite onto all traces in set. Cf
TraceElem.with_callsite