summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/unit/Makefile.am1
-rw-r--r--test/unit/theory/theory_bv_white.h3
2 files changed, 3 insertions, 1 deletions
diff --git a/test/unit/Makefile.am b/test/unit/Makefile.am
index 4d437d2f0..be64e3ea1 100644
--- a/test/unit/Makefile.am
+++ b/test/unit/Makefile.am
@@ -11,6 +11,7 @@ UNIT_TESTS += \
theory/theory_black \
theory/theory_white \
theory/theory_arith_white \
+ theory/theory_bv_white \
theory/type_enumerator_white \
expr/node_white \
expr/node_black \
diff --git a/test/unit/theory/theory_bv_white.h b/test/unit/theory/theory_bv_white.h
index 4999ec3d4..dd65fc8e4 100644
--- a/test/unit/theory/theory_bv_white.h
+++ b/test/unit/theory/theory_bv_white.h
@@ -21,6 +21,7 @@
#include "theory/theory.h"
#include "smt/smt_engine.h"
#include "smt/smt_engine_scope.h"
+#include "theory/bv/theory_bv.h"
#include "theory/bv/eager_bitblaster.h"
#include "expr/node.h"
#include "expr/node_manager.h"
@@ -59,7 +60,7 @@ public:
d_smt = new SmtEngine(d_em);
d_scope = new SmtScope(d_smt);
d_smt->setOption("bitblast", SExpr("eager"));
- d_bb = new EagerBitblaster();
+ d_bb = new EagerBitblaster(NULL);
}
void tearDown() {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback