summaryrefslogtreecommitdiff
path: root/test
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 /test
parentffdf7434ba53191546e13663764894852e8bc6dd (diff)
bv: Rename lazy solver to layered solver. (#6889)
Diffstat (limited to 'test')
-rw-r--r--test/unit/theory/theory_bv_white.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unit/theory/theory_bv_white.cpp b/test/unit/theory/theory_bv_white.cpp
index 150320824..4cf695609 100644
--- a/test/unit/theory/theory_bv_white.cpp
+++ b/test/unit/theory/theory_bv_white.cpp
@@ -22,7 +22,7 @@
#include "expr/node.h"
#include "test_smt.h"
#include "theory/bv/bitblast/eager_bitblaster.h"
-#include "theory/bv/bv_solver_lazy.h"
+#include "theory/bv/bv_solver_layered.h"
#include "theory/theory.h"
#include "theory/theory_engine.h"
@@ -45,7 +45,7 @@ TEST_F(TestTheoryWhiteBv, bitblaster_core)
d_smtEngine->setLogic("QF_BV");
d_smtEngine->setOption("bitblast", "eager");
- d_smtEngine->setOption("bv-solver", "lazy");
+ d_smtEngine->setOption("bv-solver", "layered");
d_smtEngine->setOption("incremental", "false");
// Notice that this unit test uses the theory engine of a created SMT
// engine d_smtEngine. We must ensure that d_smtEngine is properly initialized
@@ -53,7 +53,7 @@ TEST_F(TestTheoryWhiteBv, bitblaster_core)
d_smtEngine->finishInit();
TheoryBV* tbv = dynamic_cast<TheoryBV*>(
d_smtEngine->getTheoryEngine()->d_theoryTable[THEORY_BV]);
- BVSolverLazy* bvsl = dynamic_cast<BVSolverLazy*>(tbv->d_internal.get());
+ BVSolverLayered* bvsl = dynamic_cast<BVSolverLayered*>(tbv->d_internal.get());
std::unique_ptr<EagerBitblaster> bb(
new EagerBitblaster(bvsl, d_smtEngine->getContext()));
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback