1 |
|
/****************************************************************************** |
2 |
|
* Top contributors (to current version): |
3 |
|
* Andrew Reynolds, Gereon Kremer |
4 |
|
* |
5 |
|
* This file is part of the cvc5 project. |
6 |
|
* |
7 |
|
* Copyright (c) 2009-2021 by the authors listed in the file AUTHORS |
8 |
|
* in the top-level source directory and their institutional affiliations. |
9 |
|
* All rights reserved. See the file COPYING in the top-level source |
10 |
|
* directory for licensing information. |
11 |
|
* **************************************************************************** |
12 |
|
* |
13 |
|
* The module for proofs for preprocessing in an SMT engine. |
14 |
|
*/ |
15 |
|
|
16 |
|
#include "cvc5_private.h" |
17 |
|
|
18 |
|
#ifndef CVC5__SMT__PREPROCESS_PROOF_GENERATOR_H |
19 |
|
#define CVC5__SMT__PREPROCESS_PROOF_GENERATOR_H |
20 |
|
|
21 |
|
#include "context/cdhashmap.h" |
22 |
|
#include "proof/lazy_proof.h" |
23 |
|
#include "proof/proof.h" |
24 |
|
#include "proof/proof_generator.h" |
25 |
|
#include "proof/proof_set.h" |
26 |
|
#include "proof/trust_node.h" |
27 |
|
|
28 |
|
namespace cvc5 { |
29 |
|
|
30 |
|
class LazyCDProof; |
31 |
|
class ProofNodeManager; |
32 |
|
|
33 |
|
namespace smt { |
34 |
|
|
35 |
|
/** |
36 |
|
* This is a proof generator that manages proofs for a set of formulas that |
37 |
|
* may be replaced over time. This set of formulas is implicit; formulas that |
38 |
|
* are not notified as assertions to this class are treated as assumptions. |
39 |
|
* |
40 |
|
* The main use case of this proof generator is for proofs of preprocessing, |
41 |
|
* although it can be used in other scenarios where proofs for an evolving set |
42 |
|
* of formulas is maintained. In the remainder of the description here, we |
43 |
|
* describe its role as a proof generator for proofs of preprocessing. |
44 |
|
* |
45 |
|
* This class has two main interfaces during solving: |
46 |
|
* (1) notifyNewAssert, for assertions that are not part of the input and are |
47 |
|
* added to the assertion pipeline by preprocessing passes, |
48 |
|
* (2) notifyPreprocessed, which is called when a preprocessing pass rewrites |
49 |
|
* an assertion into another. |
50 |
|
* Notice that input assertions do not need to be provided to this class. |
51 |
|
* |
52 |
|
* Its getProofFor method produces a proof for a preprocessed assertion |
53 |
|
* whose free assumptions are intended to be input assertions, which are |
54 |
|
* implictly all assertions that are not notified to this class. |
55 |
|
*/ |
56 |
|
class PreprocessProofGenerator : public ProofGenerator |
57 |
|
{ |
58 |
|
typedef context::CDHashMap<Node, TrustNode> NodeTrustNodeMap; |
59 |
|
|
60 |
|
public: |
61 |
|
/** |
62 |
|
* @param pnm The proof node manager |
63 |
|
* @param c The context this class depends on |
64 |
|
* @param name The name of this generator (for debugging) |
65 |
|
* @param ra The proof rule to use when no generator is provided for new |
66 |
|
* assertions |
67 |
|
* @param rpp The proof rule to use when no generator is provided for |
68 |
|
* preprocessing steps. |
69 |
|
*/ |
70 |
|
PreprocessProofGenerator(ProofNodeManager* pnm, |
71 |
|
context::Context* c = nullptr, |
72 |
|
std::string name = "PreprocessProofGenerator", |
73 |
|
PfRule ra = PfRule::PREPROCESS_LEMMA, |
74 |
|
PfRule rpp = PfRule::PREPROCESS); |
75 |
15144 |
~PreprocessProofGenerator() {} |
76 |
|
/** |
77 |
|
* Notify that n is an input (its proof is ASSUME). |
78 |
|
*/ |
79 |
|
void notifyInput(Node n); |
80 |
|
/** |
81 |
|
* Notify that n is a new assertion, where pg can provide a proof of n. |
82 |
|
*/ |
83 |
|
void notifyNewAssert(Node n, ProofGenerator* pg); |
84 |
|
/** Notify a new assertion, trust node version. */ |
85 |
|
void notifyNewTrustedAssert(TrustNode tn); |
86 |
|
/** |
87 |
|
* Notify that n was replaced by np due to preprocessing, where pg can |
88 |
|
* provide a proof of the equality n=np. |
89 |
|
*/ |
90 |
|
void notifyPreprocessed(Node n, Node np, ProofGenerator* pg); |
91 |
|
/** Notify preprocessed, trust node version */ |
92 |
|
void notifyTrustedPreprocessed(TrustNode tnp); |
93 |
|
/** |
94 |
|
* Get proof for f, which returns a proof based on proving an equality based |
95 |
|
* on transitivity of preprocessing steps, and then using the original |
96 |
|
* assertion with EQ_RESOLVE to obtain the proof of the ending assertion f. |
97 |
|
*/ |
98 |
|
std::shared_ptr<ProofNode> getProofFor(Node f) override; |
99 |
|
/** Identify */ |
100 |
|
std::string identify() const override; |
101 |
|
/** Get the proof manager */ |
102 |
|
ProofNodeManager* getManager(); |
103 |
|
/** |
104 |
|
* Allocate a helper proof. This returns a fresh lazy proof object that |
105 |
|
* remains alive in the context. This feature is used to construct |
106 |
|
* helper proofs for preprocessing, e.g. to support the skeleton of proofs |
107 |
|
* that connect AssertionPipeline::conjoin steps. |
108 |
|
*/ |
109 |
|
LazyCDProof* allocateHelperProof(); |
110 |
|
|
111 |
|
private: |
112 |
|
/** |
113 |
|
* Possibly check pedantic failure for null proof generator provided |
114 |
|
* to this class. |
115 |
|
*/ |
116 |
|
void checkEagerPedantic(PfRule r); |
117 |
|
/** The proof node manager */ |
118 |
|
ProofNodeManager* d_pnm; |
119 |
|
/** A dummy context used by this class if none is provided */ |
120 |
|
context::Context d_context; |
121 |
|
/** The context used here */ |
122 |
|
context::Context* d_ctx; |
123 |
|
/** |
124 |
|
* The trust node that was the source of each node constructed during |
125 |
|
* preprocessing. For each n, d_src[n] is a trust node whose node is n. This |
126 |
|
* can either be: |
127 |
|
* (1) A trust node REWRITE proving (n_src = n) for some n_src, or |
128 |
|
* (2) A trust node LEMMA proving n. |
129 |
|
*/ |
130 |
|
NodeTrustNodeMap d_src; |
131 |
|
/** A context-dependent list of LazyCDProof, allocated for conjoin steps */ |
132 |
|
CDProofSet<LazyCDProof> d_helperProofs; |
133 |
|
/** |
134 |
|
* A cd proof for input assertions, this is an empty proof that intentionally |
135 |
|
* returns (ASSUME f) for all f. |
136 |
|
*/ |
137 |
|
CDProof d_inputPf; |
138 |
|
/** Name for debugging */ |
139 |
|
std::string d_name; |
140 |
|
/** The trust rule for new assertions with no provided proof generator */ |
141 |
|
PfRule d_ra; |
142 |
|
/** The trust rule for rewrites with no provided proof generator */ |
143 |
|
PfRule d_rpp; |
144 |
|
}; |
145 |
|
|
146 |
|
} // namespace smt |
147 |
|
} // namespace cvc5 |
148 |
|
|
149 |
|
#endif |