summaryrefslogtreecommitdiff
path: root/src/smt/preprocess_proof_generator.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-05-27 16:28:58 -0500
committerGitHub <noreply@github.com>2021-05-27 21:28:58 +0000
commit8b3de13131d24bf400ba5f36fc234008d950f345 (patch)
tree0de3a60dcdad716cede78b8fe024996690399a2f /src/smt/preprocess_proof_generator.h
parentb9062490a7590708bcf158d4670a23d859fe3355 (diff)
Update proof namespaces (#6614)
This removes namespace theory from proof utilities, and moves MethodId to its own file in src/proof/.
Diffstat (limited to 'src/smt/preprocess_proof_generator.h')
-rw-r--r--src/smt/preprocess_proof_generator.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/smt/preprocess_proof_generator.h b/src/smt/preprocess_proof_generator.h
index 347f4af3b..a0e88b3e9 100644
--- a/src/smt/preprocess_proof_generator.h
+++ b/src/smt/preprocess_proof_generator.h
@@ -55,7 +55,7 @@ namespace smt {
*/
class PreprocessProofGenerator : public ProofGenerator
{
- typedef context::CDHashMap<Node, theory::TrustNode> NodeTrustNodeMap;
+ typedef context::CDHashMap<Node, TrustNode> NodeTrustNodeMap;
public:
/**
@@ -82,14 +82,14 @@ class PreprocessProofGenerator : public ProofGenerator
*/
void notifyNewAssert(Node n, ProofGenerator* pg);
/** Notify a new assertion, trust node version. */
- void notifyNewTrustedAssert(theory::TrustNode tn);
+ void notifyNewTrustedAssert(TrustNode tn);
/**
* Notify that n was replaced by np due to preprocessing, where pg can
* provide a proof of the equality n=np.
*/
void notifyPreprocessed(Node n, Node np, ProofGenerator* pg);
/** Notify preprocessed, trust node version */
- void notifyTrustedPreprocessed(theory::TrustNode tnp);
+ void notifyTrustedPreprocessed(TrustNode tnp);
/**
* Get proof for f, which returns a proof based on proving an equality based
* on transitivity of preprocessing steps, and then using the original
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback