summaryrefslogtreecommitdiff
path: root/test/unit/theory
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2011-10-17 03:12:17 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2011-10-17 03:12:17 +0000
commitbb59480a36fb0f799af53676c07b8fca43c2fff4 (patch)
tree555fb1210e2e94ba09bb9dd447cac30a6ad2ab70 /test/unit/theory
parent5cb65d8beac0f06fcafbef99d109c09ad029b14d (diff)
Sharing work
Diffstat (limited to 'test/unit/theory')
-rw-r--r--test/unit/theory/theory_arith_white.h8
-rw-r--r--test/unit/theory/theory_black.h4
2 files changed, 6 insertions, 6 deletions
diff --git a/test/unit/theory/theory_arith_white.h b/test/unit/theory/theory_arith_white.h
index f0073cc0b..4787dfd21 100644
--- a/test/unit/theory/theory_arith_white.h
+++ b/test/unit/theory/theory_arith_white.h
@@ -128,7 +128,7 @@ public:
Node leq = d_nm->mkNode(LEQ, x, c);
fakeTheoryEnginePreprocess(leq);
- d_arith->assertFact(leq);
+ d_arith->assertFact(leq, true);
d_arith->check(d_level);
@@ -160,7 +160,7 @@ public:
fakeTheoryEnginePreprocess(leq1);
fakeTheoryEnginePreprocess(geq1);
- d_arith->assertFact(lt1);
+ d_arith->assertFact(lt1, true);
d_arith->check(d_level);
@@ -199,7 +199,7 @@ public:
fakeTheoryEnginePreprocess(leq1);
fakeTheoryEnginePreprocess(geq1);
- d_arith->assertFact(leq0);
+ d_arith->assertFact(leq0, true);
d_arith->check(d_level);
@@ -235,7 +235,7 @@ public:
fakeTheoryEnginePreprocess(leq1);
fakeTheoryEnginePreprocess(geq1);
- d_arith->assertFact(leq1);
+ d_arith->assertFact(leq1, true);
d_arith->check(d_level);
diff --git a/test/unit/theory/theory_black.h b/test/unit/theory/theory_black.h
index 63900c19c..be1d4a35b 100644
--- a/test/unit/theory/theory_black.h
+++ b/test/unit/theory/theory_black.h
@@ -214,8 +214,8 @@ public:
void testDone() {
TS_ASSERT(d_dummy->doneWrapper());
- d_dummy->assertFact(atom0);
- d_dummy->assertFact(atom1);
+ d_dummy->assertFact(atom0, true);
+ d_dummy->assertFact(atom1, true);
TS_ASSERT(!d_dummy->doneWrapper());
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback