summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-08-17 15:09:05 -0500
committerGitHub <noreply@github.com>2018-08-17 15:09:05 -0500
commitee4004505fa7f086872880d2d693c0608af29050 (patch)
tree3c1f155debe7367c3ece51e8a6c5af87c75cbcac /src/theory/theory_engine.h
parent6d65aa41a7e218469e99f476259cccb08c4c46c1 (diff)
Remove support for flipDecision (#2319)
Diffstat (limited to 'src/theory/theory_engine.h')
-rw-r--r--src/theory/theory_engine.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/theory/theory_engine.h b/src/theory/theory_engine.h
index 9eafe2598..5763114ca 100644
--- a/src/theory/theory_engine.h
+++ b/src/theory/theory_engine.h
@@ -247,9 +247,8 @@ class TheoryEngine {
return ss.str();
}
- public:
-
- IntStat conflicts, propagations, lemmas, requirePhase, flipDecision, restartDemands;
+ public:
+ IntStat conflicts, propagations, lemmas, requirePhase, restartDemands;
Statistics(theory::TheoryId theory);
~Statistics();
@@ -316,12 +315,6 @@ class TheoryEngine {
d_engine->d_propEngine->requirePhase(n, phase);
}
- bool flipDecision() override {
- Debug("theory") << "EngineOutputChannel::flipDecision()" << std::endl;
- ++d_statistics.flipDecision;
- return d_engine->d_propEngine->flipDecision();
- }
-
void setIncomplete() override {
Trace("theory") << "TheoryEngine::setIncomplete()" << std::endl;
d_engine->setIncomplete(d_theory);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback