summaryrefslogtreecommitdiff
path: root/src/theory/theory_test_utils.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2013-05-03 16:32:11 -0400
committerTim King <taking@cs.nyu.edu>2013-05-03 16:32:11 -0400
commit9a490befefedfd40b7abab5080e84fb7c0540f86 (patch)
treed7d73eadd61af32c9cdc08a461198edbc5e38d90 /src/theory/theory_test_utils.h
parent4c20ab57d70c4812d75af037e95c371c65418333 (diff)
Fixing compilation of unit tests. These problems were due to splitLemma() being pure virtual.
Diffstat (limited to 'src/theory/theory_test_utils.h')
-rw-r--r--src/theory/theory_test_utils.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/theory/theory_test_utils.h b/src/theory/theory_test_utils.h
index 237b09bc1..e4921b163 100644
--- a/src/theory/theory_test_utils.h
+++ b/src/theory/theory_test_utils.h
@@ -107,6 +107,11 @@ public:
d_callHistory.clear();
}
+ LemmaStatus splitLemma(TNode n, bool removable = false) throw(TypeCheckingExceptionPrivate, AssertionException){
+ push(LEMMA, n);
+ return LemmaStatus(Node::null(), 0);
+ }
+
Node getIthNode(int i) {
Node tmp = (d_callHistory[i]).second;
return tmp;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback