include sig ... end
val remove : key -> t -> tval mem : key -> t -> boolval iter : (key -> value -> unit) -> t -> unitval fold : (key -> value -> 'a -> 'a) -> t -> 'a -> 'aval for_all : (key -> value -> bool) -> t -> boolval exists : (key -> value -> bool) -> t -> boolval equal : t -> t -> boolval compare : t -> t -> intval pretty : unit -> t -> Pretty.docval name : unit -> stringval arbitrary : unit -> t QCheck.arbitraryval pretty_diff : unit -> (t * t) -> Pretty.docval leq_with_fct : (value -> value -> bool) -> t -> t -> boolval get_alias : key -> t -> V.k optionval get_aliased : V.k -> t -> key listval get_aliases : key -> t -> key listval remove' : key -> t -> tval get_record : key -> t -> V.r optionval is_special_var : V.k -> boolval without_special_vars : t -> tval only_globals : t -> tval add_all : t -> t -> tval callstack_var : Cil.varinfo * [> `NoOffset ]val callstack : t -> Cil.location listval string_of_callstack : t -> stringval edit_callstack : (Cil.location list -> Cil.location list) -> t -> tval must : key -> (V.r -> bool) -> t -> boolval may : key -> (V.r -> bool) -> t -> boolval is_may : key -> t -> boolval unknown : key -> t -> tval is_unknown : key -> t -> boolval string_of_state : key -> t -> stringval string_of_key : V.k -> stringval string_of_entry : V.k -> t -> stringval string_of_map : t -> string listval sprint : (unit -> 'a -> Pretty.doc) -> 'a -> stringval key_from_lval :
Cil.lval ->
Cil.varinfo
* ([> `Field of Cil.fieldinfo * 'a | `Index of Cil.exp * 'a | `NoOffset ] as 'a)val goto : key -> Cil.location list -> V.s -> t -> tval may_goto : key -> Cil.location list -> V.s -> t -> tval in_state : key -> V.s -> t -> boolval may_in_state : key -> V.s -> t -> boolval get_states : key -> t -> V.s list