summaryrefslogtreecommitdiff
path: root/src/theory/bv/bv_eager_solver.h
diff options
context:
space:
mode:
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 ab51ea844..fec4edee9 100644
--- a/src/theory/bv/bv_eager_solver.h
+++ b/src/theory/bv/bv_eager_solver.h
@@ -19,7 +19,7 @@
#define CVC5__THEORY__BV__BV_EAGER_SOLVER_H
#include "expr/node.h"
-#include "theory/bv/bv_solver_lazy.h"
+#include "theory/bv/bv_solver_layered.h"
#include "theory/theory_model.h"
namespace cvc5 {
@@ -34,7 +34,7 @@ class AigBitblaster;
*/
class EagerBitblastSolver {
public:
- EagerBitblastSolver(context::Context* c, theory::bv::BVSolverLazy* bv);
+ EagerBitblastSolver(context::Context* c, theory::bv::BVSolverLayered* bv);
~EagerBitblastSolver();
bool checkSat();
void assertFormula(TNode formula);
@@ -54,7 +54,7 @@ class EagerBitblastSolver {
std::unique_ptr<AigBitblaster> d_aigBitblaster;
bool d_useAig;
- BVSolverLazy* d_bv;
+ BVSolverLayered* d_bv;
}; // class EagerBitblastSolver
} // namespace bv
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback