Parameter Make.1-Env
module ProofState : ProofState.S with module C = C and module Ctx = Ctxtype generate_rule= full:bool -> unit -> C.t listGeneration of clauses regardless of current clause.
- parameter full
if true, perform more thorough checks
type binary_inf_rule= inf_ruletype unary_inf_rule= inf_ruletype simplify_rule= C.t -> C.t SimplM.tSimplify the clause structurally (basic simplifications), in the simplification monad.
(c, `Same)means the clause has not been simplified;(c, `New)means the clause has been simplified at least once
type active_simplify_rule= simplify_ruletype rw_simplify_rule= simplify_ruletype backward_simplify_rule= C.t -> C.ClauseSet.tbackward simplification by a unit clause. It returns a set of active clauses that can potentially be simplified by the given clause.
backward_simplify ctherefore returns a subset ofProofState.ActiveSet.clauses ()
type redundant_rule= C.t -> boolcheck whether the clause is redundant w.r.t the set
type backward_redundant_rule= C.ClauseSet.t -> C.t -> C.ClauseSet.tfind redundant clauses in
ProofState.ActiveSetw.r.t the clause. first param is the set of already known redundant clause, the rule should add clauses to it
type is_trivial_trail_rule= Trail.t -> boolRule that checks whether the trail is trivial (a tautology)
type is_trivial_rule= C.t -> boolRule that checks whether the clause is trivial (a tautology)
type term_rewrite_rule= Logtk.Term.t -> (Logtk.Term.t * Logtk.Proof.parent list) optionRewrite rule on terms
type lit_rewrite_rule= Logtk.Literal.t -> (Logtk.Literal.t * Logtk.Proof.parent list * Logtk.Proof.tag list) optionRewrite rule on literals
type multi_simpl_rule= C.t -> C.t list option(maybe) rewrite a clause to a set of clauses. Must return
Noneif the clause is unmodified
type 'a conversion_result=|CR_skiprule didn't fire
|CR_add of 'aadd this to the result
|CR_return of 'ashortcut the remaining rules, return this
type clause_conversion_rule= Logtk.Statement.clause_t -> C.t list conversion_resultA hook to convert a particular statement into a list of clauses
Modify the Env
val add_passive : C.t Sequence.t -> unitAdd passive clauses
val add_active : C.t Sequence.t -> unitAdd active clauses
val add_simpl : C.t Sequence.t -> unitAdd simplification clauses
val remove_passive : C.t Sequence.t -> unitRemove passive clauses
val remove_active : C.t Sequence.t -> unitRemove active clauses
val remove_simpl : C.t Sequence.t -> unitRemove simplification clauses
val get_passive : unit -> C.t Sequence.tPassive clauses
val get_active : unit -> C.t Sequence.tActive clauses
val add_binary_inf : string -> binary_inf_rule -> unitAdd a binary inference rule
val add_unary_inf : string -> unary_inf_rule -> unitAdd a unary inference rule
val add_rw_simplify : rw_simplify_rule -> unitAdd forward rewriting rule
val add_active_simplify : active_simplify_rule -> unitAdd simplification w.r.t active set
val add_backward_simplify : backward_simplify_rule -> unitAdd simplification of the active set
val add_redundant : redundant_rule -> unitAdd redundancy criterion w.r.t. the active set
val add_backward_redundant : backward_redundant_rule -> unitAdd rule that finds redundant clauses within active set
val add_basic_simplify : simplify_rule -> unitAdd basic simplification rule
val add_unary_simplify : simplify_rule -> unitAdd unary simplification rule (not dependent on proof state)
val add_multi_simpl_rule : multi_simpl_rule -> unitAdd a multi-clause simplification rule
val add_is_trivial_trail : is_trivial_trail_rule -> unitAdd tautology detection rule
val add_is_trivial : is_trivial_rule -> unitAdd tautology detection rule
val add_rewrite_rule : string -> term_rewrite_rule -> unitAdd a term rewrite rule
val add_lit_rule : string -> lit_rewrite_rule -> unitAdd a literal rewrite rule
val add_generate : string -> generate_rule -> unitval cr_skip : _ conversion_resultval cr_return : 'a -> 'a conversion_resultval cr_add : 'a -> 'a conversion_resultval add_clause_conversion : clause_conversion_rule -> unitval add_step_init : (unit -> unit) -> unitadd a function to call before each saturation step
Use the Env
val multi_simplify : C.t -> C.t list optionCan we simplify the clause into a List of simplified clauses?
val params : Params.tval get_empty_clauses : unit -> C.ClauseSet.tSet of known empty clauses
val get_some_empty_clause : unit -> C.t optionSome empty clause, if present, otherwise None
val on_start : unit Logtk.Signal.tTriggered before starting saturation
val on_input_statement : Logtk.Statement.clause_t Logtk.Signal.tTriggered on every input statement
val convert_input_statements : Logtk.Statement.clause_t CCVector.ro_vector -> C.t Clause.setsConvert raw input statements into clauses, triggering
on_input_statement
val on_empty_clause : C.t Logtk.Signal.tSignal triggered when an empty clause is found
val ord : unit -> Logtk.Ordering.tval precedence : unit -> Logtk.Precedence.tval signature : unit -> Logtk.Signature.tval pp : unit CCFormat.printerval pp_full : unit CCFormat.printer
High level operations
val stats : unit -> statsCompute stats
val next_passive : unit -> C.t optionExtract next passive clause
val do_generate : full:bool -> unit -> C.t Sequence.tdo generating inferences
val is_trivial_trail : Trail.t -> boolCheck whether the trail is trivial
val is_trivial : C.t -> boolCheck whether the clause is trivial
val is_active : C.t -> boolIs the clause in the active set
val is_passive : C.t -> boolIs the clause a passive clause?
val basic_simplify : simplify_ruleBasic (and fast) simplifications
val unary_simplify : simplify_ruleSimplify the clause.
val backward_simplify : C.t -> C.ClauseSet.t * C.t Sequence.tPerform backward simplification with the given clause. It returns the CSet of clauses that become redundant, and the sequence of those very same clauses after simplification.
val simplify_active_with : (C.t -> C.t list option) -> unitCan be called when a simplification relation becomes stronger, with the strengthened relation. (e.g. new axioms should be declared because a theory was detected). This will go through the whole active set, trying to simplify clauses with the given function. Simplified clauses will be put back in the passive set.
val forward_simplify : simplify_ruleSimplify the clause w.r.t to the active set and experts
val is_redundant : C.t -> boolIs the given clause redundant w.r.t the active set?
val subsumed_by : C.t -> C.ClauseSet.tList of active clauses subsumed by the given clause
val all_simplify : C.t -> C.t list SimplM.tUse all simplification rules to convert a clause into a set of maximally simplified clause (or
[]if they are all trivial).
val step_init : unit -> unitcall all functions registered with
add_step_init
Misc
val flex_state : unit -> Logtk.Flex_state.tState inherited from configuration
val update_flex_state : (Logtk.Flex_state.t -> Logtk.Flex_state.t) -> unitupdate_flex_state fchangesflex_state ()usingf
val flex_add : 'a Logtk.Flex_state.key -> 'a -> unitadd
k -> vto the flex state
val flex_get : 'a Logtk.Flex_state.key -> 'aflex_get kis the same asFlex_state.get_exn k (flex_state ()).- raises Not_found
if the key is not present