summaryrefslogtreecommitdiff
path: root/src/theory/bv/bv_subtheory.h
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2018-12-15 10:51:18 -0800
committerAndres Noetzli <andres.noetzli@gmail.com>2018-12-15 10:51:18 -0800
commite0cc55905bae01121ebbbc95bf5a123b2f23d638 (patch)
treef6bb2fa716be0df5c6452c8eaab6c129907f7134 /src/theory/bv/bv_subtheory.h
parent38567260a8bbd9dffdc71a6d2fa71d53f6affaa7 (diff)
parente644cb6dc8b5b8c64663bd4e57d14e1d86588695 (diff)
Merge branch 'revertMoveSSCombine' into prePostKindsprePostKinds
Diffstat (limited to 'src/theory/bv/bv_subtheory.h')
-rw-r--r--src/theory/bv/bv_subtheory.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/theory/bv/bv_subtheory.h b/src/theory/bv/bv_subtheory.h
index 3166401aa..31c542e0b 100644
--- a/src/theory/bv/bv_subtheory.h
+++ b/src/theory/bv/bv_subtheory.h
@@ -24,6 +24,11 @@
#include "theory/theory.h"
namespace CVC4 {
+
+namespace proof {
+class ResolutionBitVectorProof;
+}
+
namespace theory {
class TheoryModel;
@@ -88,7 +93,7 @@ class SubtheorySolver {
return res;
}
virtual void assertFact(TNode fact) { d_assertionQueue.push_back(fact); }
- virtual void setProofLog(BitVectorProof* bvp) {}
+ virtual void setProofLog(proof::ResolutionBitVectorProof* bvp) {}
AssertionQueue::const_iterator assertionsBegin() {
return d_assertionQueue.begin();
}
@@ -103,7 +108,7 @@ class SubtheorySolver {
/** The bit-vector theory */
TheoryBV* d_bv;
/** proof log */
- BitVectorProof* d_bvp;
+ proof::ResolutionBitVectorProof* d_bvp;
AssertionQueue d_assertionQueue;
context::CDO<uint32_t> d_assertionIndex;
}; /* class SubtheorySolver */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback