summaryrefslogtreecommitdiff
path: root/src/theory/strings/sequences_stats.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-03-16 14:14:33 -0500
committerGitHub <noreply@github.com>2021-03-16 19:14:33 +0000
commit8c11c5b2683aa13160447aef302d82115a08081a (patch)
treec3f878b7d0e4e221be7fb710dd92df5990adc37a /src/theory/strings/sequences_stats.cpp
parentd6890791897ddebf1212d3e3147bf7aeb2415b27 (diff)
Further standardization of strings statistics (#6128)
Also eliminates use of raw output channel in strings.
Diffstat (limited to 'src/theory/strings/sequences_stats.cpp')
-rw-r--r--src/theory/strings/sequences_stats.cpp18
1 files changed, 1 insertions, 17 deletions
diff --git a/src/theory/strings/sequences_stats.cpp b/src/theory/strings/sequences_stats.cpp
index ec6b5e89b..c679bc414 100644
--- a/src/theory/strings/sequences_stats.cpp
+++ b/src/theory/strings/sequences_stats.cpp
@@ -31,13 +31,7 @@ SequencesStatistics::SequencesStatistics()
d_rewrites("theory::strings::rewrites"),
d_conflictsEqEngine("theory::strings::conflictsEqEngine", 0),
d_conflictsEager("theory::strings::conflictsEager", 0),
- d_conflictsInfer("theory::strings::conflictsInfer", 0),
- d_lemmasEagerPreproc("theory::strings::lemmasEagerPreproc", 0),
- d_lemmasCmiSplit("theory::strings::lemmasCmiSplit", 0),
- d_lemmasRegisterTerm("theory::strings::lemmasRegisterTerm", 0),
- d_lemmasRegisterTermAtomic("theory::strings::lemmasRegisterTermAtomic",
- 0),
- d_lemmasInfer("theory::strings::lemmasInfer", 0)
+ d_conflictsInfer("theory::strings::conflictsInfer", 0)
{
smtStatisticsRegistry()->registerStat(&d_checkRuns);
smtStatisticsRegistry()->registerStat(&d_strategyRuns);
@@ -50,11 +44,6 @@ SequencesStatistics::SequencesStatistics()
smtStatisticsRegistry()->registerStat(&d_conflictsEqEngine);
smtStatisticsRegistry()->registerStat(&d_conflictsEager);
smtStatisticsRegistry()->registerStat(&d_conflictsInfer);
- smtStatisticsRegistry()->registerStat(&d_lemmasEagerPreproc);
- smtStatisticsRegistry()->registerStat(&d_lemmasCmiSplit);
- smtStatisticsRegistry()->registerStat(&d_lemmasRegisterTerm);
- smtStatisticsRegistry()->registerStat(&d_lemmasRegisterTermAtomic);
- smtStatisticsRegistry()->registerStat(&d_lemmasInfer);
}
SequencesStatistics::~SequencesStatistics()
@@ -70,11 +59,6 @@ SequencesStatistics::~SequencesStatistics()
smtStatisticsRegistry()->unregisterStat(&d_conflictsEqEngine);
smtStatisticsRegistry()->unregisterStat(&d_conflictsEager);
smtStatisticsRegistry()->unregisterStat(&d_conflictsInfer);
- smtStatisticsRegistry()->unregisterStat(&d_lemmasEagerPreproc);
- smtStatisticsRegistry()->unregisterStat(&d_lemmasCmiSplit);
- smtStatisticsRegistry()->unregisterStat(&d_lemmasRegisterTerm);
- smtStatisticsRegistry()->unregisterStat(&d_lemmasRegisterTermAtomic);
- smtStatisticsRegistry()->unregisterStat(&d_lemmasInfer);
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback