summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
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.cpp
parent6d65aa41a7e218469e99f476259cccb08c4c46c1 (diff)
Remove support for flipDecision (#2319)
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index 0ccce95c9..f5341b38b 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -2393,14 +2393,12 @@ TheoryEngine::Statistics::Statistics(theory::TheoryId theory):
propagations(getStatsPrefix(theory) + "::propagations", 0),
lemmas(getStatsPrefix(theory) + "::lemmas", 0),
requirePhase(getStatsPrefix(theory) + "::requirePhase", 0),
- flipDecision(getStatsPrefix(theory) + "::flipDecision", 0),
restartDemands(getStatsPrefix(theory) + "::restartDemands", 0)
{
smtStatisticsRegistry()->registerStat(&conflicts);
smtStatisticsRegistry()->registerStat(&propagations);
smtStatisticsRegistry()->registerStat(&lemmas);
smtStatisticsRegistry()->registerStat(&requirePhase);
- smtStatisticsRegistry()->registerStat(&flipDecision);
smtStatisticsRegistry()->registerStat(&restartDemands);
}
@@ -2409,7 +2407,6 @@ TheoryEngine::Statistics::~Statistics() {
smtStatisticsRegistry()->unregisterStat(&propagations);
smtStatisticsRegistry()->unregisterStat(&lemmas);
smtStatisticsRegistry()->unregisterStat(&requirePhase);
- smtStatisticsRegistry()->unregisterStat(&flipDecision);
smtStatisticsRegistry()->unregisterStat(&restartDemands);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback