module Proof:Res.Swith module St = St
Signature for a module handling proof by resolution from sat solving traces
module St:Solver_types.S
Module defining atom and clauses
exception Insuficient_hyps
Raised when a complete resolution derivation cannot be found using the current hypotheses.
typeatom =St.atom
typelemma =St.proof
typeclause =St.clause
Abstract types for atoms, clauses and theory-specific lemmas
type proof
Lazy type for proof trees. Proofs are persistent objects, and can be extended to proof nodes using functions defined later.
type proof_node = {
|
conclusion : |
(* | The conclusion of the proof | *) |
|
step : |
(* | The reasoning step used to prove the conclusion | *) |
A proof can be expanded into a proof node, which show the first step of the proof.
type step =
| |
Hypothesis |
(* | The conclusion is a user-provided hypothesis | *) |
| |
Assumption |
(* | The conclusion has been locally assumed by the user | *) |
| |
Lemma of |
(* | The conclusion is a tautology provided by the theory, with associated proof | *) |
| |
Duplicate of |
(* | The conclusion is obtained by eliminating multiple occurences of the atom in the conclusion of the provided proof. | *) |
| |
Resolution of |
(* | The conclusion can be deduced by performing a resolution between the conclusions of the two given proofs. The atom on which to perform the resolution is also given. | *) |
The type of reasoning steps allowed in a proof.
val to_list : clause -> atom listReturns the sorted list of atoms of a clause.
val merge : atom list -> atom list -> atom listMerge two sorted atom list using a suitable comparison function.
val resolve : atom list -> atom list * atom listPerforms a "resolution step" on a sorted list of atoms.
resolve (List.merge l1 l2) where l1 and l2 are sorted atom lists should return the pair
[a], l', where l' is the result of the resolution of l1 and l2 over a.
val prove : clause -> proofGiven a clause, return a proof of that clause.
Insuficient_hyps if it does not succeed.val prove_unsat : clause -> proofGiven a conflict clause c, returns a proof of the empty clause.
Insuficient_hyps if it does not succeed.val prove_atom : atom -> proof optionGiven an atom a, returns a proof of the clause [a] if a is true at level 0
val parents : step -> proof listReturns the parents of a proof node.
val is_leaf : step -> boolReturns wether the the proof node is a leaf, i.e. an hypothesis,
an assumption, or a lemma.
true if and only if Res_intf.S.parents returns the empty list.
val expl : step -> stringReturns a short string description for the proof step; for instance
"hypothesis" for a Hypothesis
(it currently returns the variant name in lowercase).
val expand : proof -> proof_nodeReturn the proof step at the root of a given proof.
val fold : ('a -> proof_node -> 'a) -> 'a -> proof -> 'afold f acc p, fold f over the proof p and all its node. It is guaranteed that
f is executed exactly once on each proof node in the tree, and that the execution of
f on a proof node happens after the execution on the parents of the nodes.
val unsat_core : proof -> clause listReturns the unsat_core of the given proof, i.e the lists of conclusions of all leafs of the proof.
More efficient than using the fold function since it has access to the internal representation of proofs
val check : proof -> unitCheck the contents of a proof. Mainly for internal use
val print_clause : Format.formatter -> clause -> unitA nice looking printer for clauses, which sort the atoms before printing.
module H:Hashtbl.Swith type key = clause
Hashtable over proofs.