1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980(* This file is free software, part of Zipperposition. See file "license" for more details. *)openLogtkopenLibzipperpositionmoduletypeS=sigmoduleEnv:Env.SmoduleC:moduletypeofEnv.Cwithtypet=Env.C.tmodulePS:moduletypeofEnv.ProofStatewithtypeC.t=Env.C.t(** {6 Term Indices} *)validx_sup_into:unit->PS.TermIndex.t(** index for superposition into the set *)validx_sup_from:unit->PS.TermIndex.t(** index for superposition from the set *)validx_fv:unit->PS.SubsumptionIndex.t(** index for subsumption *)(** {6 Inference Rules} *)valinfer_active:Env.binary_inf_rule(** superposition where given clause is active *)valinfer_passive:Env.binary_inf_rule(** superposition where given clause is passive *)valinfer_equality_resolution:Env.unary_inf_rulevalinfer_equality_factoring:Env.unary_inf_rule(** {6 Simplifications rules} *)valis_tautology:C.t->bool(** Check whether the clause is a (syntactic) tautology, ie whether
it contains true or "A" and "not A" *)valis_semantic_tautology:C.t->bool(** semantic tautology deletion, using a congruence closure algorithm
to see if negative literals imply some positive Literal.t *)valhandle_distinct_constants:Env.lit_rewrite_rule(** Decide on "quoted" "symbols" (which are all distinct) *)valbasic_simplify:Env.simplify_rule(** basic simplifications (remove duplicate literals, trivial literals,
destructive equality resolution...) *)valsubsumes:Literal.tarray->Literal.tarray->bool(** subsumes c1 c2 iff c1 subsumes c2 *)valsubsumes_with:Literals.tScoped.t->Literals.tScoped.t->(Subst.FO.t*Proof.taglist)option(** returns subsuming subst if the first clause subsumes the second one *)valeq_subsumes:Literal.tarray->Literal.tarray->bool(** equality subsumption *)valsubsumed_by_active_set:C.t->bool(** check whether the clause is subsumed by any clause in the set *)valsubsumed_in_active_set:Env.backward_redundant_rule(** list of clauses in the active set that are subsumed by the clause *)valcontextual_literal_cutting:Env.simplify_rule(** contextual Literal.t cutting of the given clause by the active set *)valcondensation:Env.simplify_rule(** condensation *)(** {6 Registration} *)valregister:unit->unit(** Register rules in the environment *)end