summaryrefslogtreecommitdiff
path: root/test/unit
diff options
context:
space:
mode:
authorLiana Hadarean <lianahady@gmail.com>2012-05-08 21:54:55 +0000
committerLiana Hadarean <lianahady@gmail.com>2012-05-08 21:54:55 +0000
commit8a0c0562cb8d0e26ea019ff782b25c1997a49a0b (patch)
tree28239db9bcb26b03d893ad61dd1a7ea099391fbe /test/unit
parent5082cb8349efbb287084293cd4bc6c3fa5a34f26 (diff)
Merging in bvprop branch, with proper bit-vector propagation.
This should also fix bug 325.
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/theory/theory_bv_white.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/unit/theory/theory_bv_white.h b/test/unit/theory/theory_bv_white.h
index 1a91364a4..bbc7a8f72 100644
--- a/test/unit/theory/theory_bv_white.h
+++ b/test/unit/theory/theory_bv_white.h
@@ -53,23 +53,23 @@ public:
void setUp() {
- d_ctxt = new Context();
- d_nm = new NodeManager(d_ctxt, NULL);
- d_scope = new NodeManagerScope(d_nm);
+ // d_ctxt = new Context();
+ // d_nm = new NodeManager(d_ctxt, NULL);
+ // d_scope = new NodeManagerScope(d_nm);
}
void tearDown() {
- delete d_scope;
- delete d_nm;
- delete d_ctxt;
+ // delete d_scope;
+ // delete d_nm;
+ // delete d_ctxt;
}
void testBitblasterCore() {
// ClauseManager tests
- Context* ctx = new Context();
- Bitblaster* bb = new Bitblaster(ctx);
+ // Context* ctx = new Context();
+ // Bitblaster* bb = new Bitblaster(ctx);
// NodeManager* nm = NodeManager::currentNM();
// TODO: update this
@@ -110,7 +110,7 @@ public:
// res = bb->solve();
// TS_ASSERT(res == false);
- delete bb;
+ //delete bb;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback