summaryrefslogtreecommitdiff
path: root/src/theory/theory_test_utils.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-12-06 02:01:06 +0000
committerMorgan Deters <mdeters@gmail.com>2011-12-06 02:01:06 +0000
commite3484f9960bb40518e7db4869f5722ec1cf0b4ed (patch)
treed1d4df40056b36f0e0c726a1dcf039ed426300b5 /src/theory/theory_test_utils.h
parent78789197b43d0af751b1f345ec91357a293b90f3 (diff)
LemmaStatus changes, as agreed to during 12/2 meeting.
Diffstat (limited to 'src/theory/theory_test_utils.h')
-rw-r--r--src/theory/theory_test_utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/theory_test_utils.h b/src/theory/theory_test_utils.h
index 49ed16788..96bd02b5a 100644
--- a/src/theory/theory_test_utils.h
+++ b/src/theory/theory_test_utils.h
@@ -81,9 +81,9 @@ public:
push(PROPAGATE, n);
}
- unsigned lemma(TNode n, bool removable) throw(AssertionException) {
+ LemmaStatus lemma(TNode n, bool removable) throw(AssertionException) {
push(LEMMA, n);
- return 0;
+ return LemmaStatus(Node::null(), 0);
}
void setIncomplete() throw(AssertionException) {}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback