PredicateAbstraction.Minclude Datatype_sig.PRINTABLE with type t := tinclude Datatype_sig.SHOW with type t := tval pp : Stdlib.Format.formatter -> t -> unitOutput to formatter
val print : ?prefix:string -> t -> unitOutput to stdout.
val show_option : t option -> stringval print_option : ?prefix:string -> t option -> unitval dump : string -> t -> unitDump to file given by filename
val show_list : ?separator:string -> t list -> stringval pp_list : Stdlib.Format.formatter -> t list -> unitval print_list : ?separator:string -> ?prefix:string -> t list -> unitCopy-pasted signature of classic polymorphic map
val empty : tval is_empty : t -> boolval add : InductiveDefinition.t -> t -> t -> tval mem : InductiveDefinition.t -> t -> boolval find : InductiveDefinition.t -> t -> tval iter : (InductiveDefinition.t -> t -> unit) -> t -> unitval fold : (InductiveDefinition.t -> t -> 'acc -> 'acc) -> t -> 'acc -> 'accval bindings : t -> (InductiveDefinition.t * t) listval cardinal : t -> intval choose : t -> InductiveDefinition.t * tval filter : (InductiveDefinition.t -> t -> bool) -> t -> tAdditional functions
val keys : t -> InductiveDefinition.t listval of_list : (InductiveDefinition.t * t) list -> tval find_pred : (InductiveDefinition.t -> bool) -> t -> InductiveDefinition.tval show : t -> stringval show_custom :
(InductiveDefinition.t -> string) ->
(t -> string) ->
t ->
string