summaryrefslogtreecommitdiff
path: root/src/theory/output_channel.h
diff options
context:
space:
mode:
authorDejan Jovanović <dejan@cs.nyu.edu>2013-04-26 12:55:13 -0400
committerDejan Jovanović <dejan@cs.nyu.edu>2013-05-02 14:47:20 -0400
commitfb05d8411fdf905550d0bfdef56f4a4c3ed6a8ef (patch)
treeecdcda2fc6c9a2e11e8029333e7ca7998cd69d82 /src/theory/output_channel.h
parenta5d1513db484457ac64a96711088aca1460af62e (diff)
* splitLemma to request atoms
* normalizing in bv before bitblasting
Diffstat (limited to 'src/theory/output_channel.h')
-rw-r--r--src/theory/output_channel.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/theory/output_channel.h b/src/theory/output_channel.h
index af3065404..524c9606d 100644
--- a/src/theory/output_channel.h
+++ b/src/theory/output_channel.h
@@ -127,9 +127,12 @@ public:
*/
LemmaStatus split(TNode n)
throw(TypeCheckingExceptionPrivate, AssertionException) {
- return lemma(n.orNode(n.notNode()));
+ return splitLemma(n.orNode(n.notNode()));
}
+ virtual LemmaStatus splitLemma(TNode n, bool removable = false)
+ throw(TypeCheckingExceptionPrivate, AssertionException) = 0;
+
/**
* If a decision is made on n, it must be in the phase specified.
* Note that this is enforced *globally*, i.e., it is completely
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback