summaryrefslogtreecommitdiff
path: root/src/theory
diff options
context:
space:
mode:
authorTianyi Liang <tianyi-liang@uiowa.edu>2014-10-17 11:20:38 -0500
committerTianyi Liang <tianyi-liang@uiowa.edu>2014-10-17 11:20:38 -0500
commit98576f10e1c197e6844c80fdeba477f5aecaec08 (patch)
tree89547fb435472c2de43d0a05cef3e1b7c676bf3c /src/theory
parent02f52d2f0c533c911c213f9ae24494618c52d227 (diff)
Minor change for performance according to Andy's suggestion.
Diffstat (limited to 'src/theory')
-rw-r--r--src/theory/strings/theory_strings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/strings/theory_strings.cpp b/src/theory/strings/theory_strings.cpp
index ac1b1b1ed..e0916974e 100644
--- a/src/theory/strings/theory_strings.cpp
+++ b/src/theory/strings/theory_strings.cpp
@@ -600,7 +600,7 @@ void TheoryStrings::check(Effort e) {
bool addedLemma = false;
- if( e == EFFORT_FULL && !d_conflict ) {
+ if( e == EFFORT_FULL && !d_conflict && !d_valuation.needCheck() ) {
//addedLemma = checkSimple();
//Trace("strings-process") << "Done simple checking, addedLemma = " << addedLemma << ", d_conflict = " << d_conflict << std::endl;
//if( !addedLemma ) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback