summaryrefslogtreecommitdiff
path: root/src/theory/bv
diff options
context:
space:
mode:
authorKshitij Bansal <kshitij@cs.nyu.edu>2014-09-02 18:28:52 -0400
committerKshitij Bansal <kshitij@cs.nyu.edu>2014-09-03 15:19:10 -0400
commit8dc1280a5161633fddfb8334811a86c911bb25c1 (patch)
treef4b100a3f70acc10e6ca05a1d4c28c659df0eafe /src/theory/bv
parente9fb730333b2719cddaa0a9209aa7953d7f30b0b (diff)
check() optimization
Details of testing here: http://church.cims.nyu.edu/wiki/User:Kshitij/theorycheckoptimization
Diffstat (limited to 'src/theory/bv')
-rw-r--r--src/theory/bv/theory_bv.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/theory/bv/theory_bv.cpp b/src/theory/bv/theory_bv.cpp
index 40bc2417b..91150f663 100644
--- a/src/theory/bv/theory_bv.cpp
+++ b/src/theory/bv/theory_bv.cpp
@@ -357,6 +357,9 @@ void TheoryBV::checkForLemma(TNode fact) {
void TheoryBV::check(Effort e)
{
+ if (done() && !fullEffort(e)) {
+ return;
+ }
Debug("bitvector") << "TheoryBV::check(" << e << ")" << std::endl;
// we may be getting new assertions so the model cache may not be sound
d_invalidateModelCache.set(true);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback