summaryrefslogtreecommitdiff
path: root/src/theory/bv/bv_eager_solver.h
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2021-07-14 18:54:33 -0700
committerGitHub <noreply@github.com>2021-07-15 01:54:33 +0000
commitbb6813731ef1059ab38cedcc5af026b6e75bd6be (patch)
tree42613e96a0e119fe21fadb8e031fd92c3dbfb50c /src/theory/bv/bv_eager_solver.h
parentffdf7434ba53191546e13663764894852e8bc6dd (diff)
bv: Rename lazy solver to layered solver. (#6889)
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