summaryrefslogtreecommitdiff
path: root/src/decision
diff options
context:
space:
mode:
Diffstat (limited to 'src/decision')
-rw-r--r--src/decision/justification_heuristic.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/decision/justification_heuristic.cpp b/src/decision/justification_heuristic.cpp
index 68c7379ce..e9f4997b7 100644
--- a/src/decision/justification_heuristic.cpp
+++ b/src/decision/justification_heuristic.cpp
@@ -23,7 +23,7 @@
#include "options/decision_options.h"
#include "theory/rewriter.h"
#include "smt_util/ite_removal.h"
-
+#include "smt/smt_statistics_registry.h"
namespace CVC4 {
@@ -48,16 +48,16 @@ JustificationHeuristic::JustificationHeuristic(CVC4::DecisionEngine* de,
d_childCache(uc),
d_weightCache(uc),
d_startIndexCache(c) {
- StatisticsRegistry::registerStat(&d_helfulness);
- StatisticsRegistry::registerStat(&d_giveup);
- StatisticsRegistry::registerStat(&d_timestat);
+ smtStatisticsRegistry()->registerStat(&d_helfulness);
+ smtStatisticsRegistry()->registerStat(&d_giveup);
+ smtStatisticsRegistry()->registerStat(&d_timestat);
Trace("decision") << "Justification heuristic enabled" << std::endl;
}
JustificationHeuristic::~JustificationHeuristic() throw() {
- StatisticsRegistry::unregisterStat(&d_helfulness);
- StatisticsRegistry::unregisterStat(&d_giveup);
- StatisticsRegistry::unregisterStat(&d_timestat);
+ smtStatisticsRegistry()->unregisterStat(&d_helfulness);
+ smtStatisticsRegistry()->unregisterStat(&d_giveup);
+ smtStatisticsRegistry()->unregisterStat(&d_timestat);
}
CVC4::prop::SatLiteral JustificationHeuristic::getNext(bool &stopSearch)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback