summaryrefslogtreecommitdiff
path: root/src/theory/bv/bv_eager_solver.h
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2020-09-03 18:34:19 -0700
committerGitHub <noreply@github.com>2020-09-03 18:34:19 -0700
commitc9e23f66383a4d490aca6d082d40117fe799ee4b (patch)
tree21c4aaf67d7d1b0c188d9e99d3b364883618b479 /src/theory/bv/bv_eager_solver.h
parenta5b834d5af88e372d9c6340653f831a09daf1d39 (diff)
Split lazy bit-vector solver from TheoryBV (#5009)
This commit separates the lazy bit-vector solver from TheoryBV, which is now a thin wrapper around a bit-vector solver d_internal . This will allow us to easily swap out the bit-vector solver in the future.
Diffstat (limited to 'src/theory/bv/bv_eager_solver.h')
-rw-r--r--src/theory/bv/bv_eager_solver.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/bv/bv_eager_solver.h b/src/theory/bv/bv_eager_solver.h
index e0b55c23b..eef824af4 100644
--- a/src/theory/bv/bv_eager_solver.h
+++ b/src/theory/bv/bv_eager_solver.h
@@ -23,7 +23,7 @@
#include <vector>
#include "expr/node.h"
-#include "theory/bv/theory_bv.h"
+#include "theory/bv/bv_solver_lazy.h"
#include "theory/theory_model.h"
namespace CVC4 {
@@ -38,7 +38,7 @@ class AigBitblaster;
*/
class EagerBitblastSolver {
public:
- EagerBitblastSolver(context::Context* c, theory::bv::TheoryBV* bv);
+ EagerBitblastSolver(context::Context* c, theory::bv::BVSolverLazy* bv);
~EagerBitblastSolver();
bool checkSat();
void assertFormula(TNode formula);
@@ -58,7 +58,7 @@ class EagerBitblastSolver {
std::unique_ptr<AigBitblaster> d_aigBitblaster;
bool d_useAig;
- TheoryBV* d_bv;
+ BVSolverLazy* d_bv;
}; // class EagerBitblastSolver
} // namespace bv
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback