Module type Index_intf.TERM_IDX

type t
type elt
module Leaf : LEAF with type elt = elt
val name : string
val empty : unit -> t
val is_empty : t -> bool
val size : t -> int
val add : t -> term -> elt -> t
val add_seq : t -> (term * elt) Sequence.t -> t
val add_list : t -> (term * elt) list -> t
val remove : t -> term -> elt -> t
val remove_seq : t -> (term * elt) Sequence.t -> t
val remove_list : t -> (term * elt) list -> t
val iter : t -> (term -> elt -> unit) -> unit
val fold : t -> ('a -> term -> elt -> 'a) -> 'a -> 'a
val retrieve_unifiables : ?⁠subst:Unif_subst.t -> t Scoped.t -> term Scoped.t -> (term * elt * Unif_subst.t) Sequence.t
val retrieve_generalizations : ?⁠subst:subst -> t Scoped.t -> term Scoped.t -> (term * elt * subst) Sequence.t
val retrieve_specializations : ?⁠subst:subst -> t Scoped.t -> term Scoped.t -> (term * elt * subst) Sequence.t
val to_dot : elt CCFormat.printer -> t CCFormat.printer

print oneself in DOT into the given file