Module Cc_plugin.Ccalgo
type pa_constructor={cnode : int;arity : int;args : int list;}type cinfo={ci_constr : Constr.pconstructor;ci_arity : int;ci_nhyps : int;}type 'a term
module ATerm : sig ... endval constr_of_axiom : axiom -> Constr.constr
type rule=|Congruence|Axiom of axiom * bool|Injection of int * pa_constructor * int * pa_constructor * inttype from=|Goal|Hyp of Constr.constr|HeqG of Names.Id.t|HeqnH of Names.Id.t * Names.Id.ttype 'a eq={lhs : int;rhs : int;rule : 'a;}type equality= rule eqtype disequality= from eqtype patt_kind=|Normal|Trivial of Constr.types|Creates_variablestype foresttype statetype explanation=|Discrimination of int * pa_constructor * int * pa_constructor|Contradiction of disequality|Incomplete of (EConstr.t * int) list
val debug_congruence : CDebug.tval forest : state -> forestval axioms : forest -> axiom -> ATerm.t * ATerm.tval empty : Environ.env -> Evd.evar_map -> int -> stateval add_aterm : state -> ATerm.t -> intval add_equality : state -> Names.Id.t -> ATerm.t -> ATerm.t -> unitval add_disequality : state -> from -> ATerm.t -> ATerm.t -> unitval add_quant : state -> Names.Id.t -> bool -> (int * patt_kind * ccpattern * patt_kind * ccpattern) -> unitval tail_pac : pa_constructor -> pa_constructorval find_oldest_pac : forest -> int -> pa_constructor -> intval aterm : forest -> int -> ATerm.tval get_constructor_info : forest -> int -> cinfoval subterms : forest -> int -> int * intval join_path : forest -> int -> int -> ((int * int) * equality) list * ((int * int) * equality) listval execute : bool -> state -> explanation optionval pr_idx_term : Environ.env -> Evd.evar_map -> forest -> int -> Pp.t