summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index 74a8fab73..5dc4d9408 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -417,12 +417,6 @@ void TheoryEngine::check(Theory::Effort effort) {
if(d_logicInfo.isQuantified()) {
// quantifiers engine must pass effort last call check
d_quantEngine->check(Theory::EFFORT_LAST_CALL);
- // if we have given up, then possibly flip decision
- if(options::flipDecision()) {
- if(d_incomplete && !d_inConflict && !needCheck()) {
- ((theory::quantifiers::TheoryQuantifiers*) d_theoryTable[THEORY_QUANTIFIERS])->flipDecision();
- }
- }
// if returning incomplete or SAT, we have ensured that the model in the quantifiers engine has been built
} else if(options::produceModels()) {
// must build model at this point
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback