summaryrefslogtreecommitdiff
path: root/src/theory/strings/sequences_stats.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-10-07 07:23:53 -0500
committerGitHub <noreply@github.com>2020-10-07 07:23:53 -0500
commit1a97c19443833604d57f1453a1bebfe0714d3d8e (patch)
tree18bb2f3a12f46de9920118713f973fc89860f126 /src/theory/strings/sequences_stats.cpp
parenta69b6eb561fadb4c2c9f09b700950af7ce43b378 (diff)
(proof-new) Add the strings proof constructor (#4903)
This is the method for converting strings InferInfo into instructions for building ProofNode. Notice that this is done as a standalone module, and thus the theory of strings uses Inferences only, not PfRule. The next step will be to integrate this utility into InferenceManager.
Diffstat (limited to 'src/theory/strings/sequences_stats.cpp')
-rw-r--r--src/theory/strings/sequences_stats.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/theory/strings/sequences_stats.cpp b/src/theory/strings/sequences_stats.cpp
index f47413783..80221cbcc 100644
--- a/src/theory/strings/sequences_stats.cpp
+++ b/src/theory/strings/sequences_stats.cpp
@@ -25,6 +25,7 @@ SequencesStatistics::SequencesStatistics()
: d_checkRuns("theory::strings::checkRuns", 0),
d_strategyRuns("theory::strings::strategyRuns", 0),
d_inferences("theory::strings::inferences"),
+ d_inferencesNoPf("theory::strings::inferencesNoPf"),
d_cdSimplifications("theory::strings::cdSimplifications"),
d_reductions("theory::strings::reductions"),
d_regexpUnfoldingsPos("theory::strings::regexpUnfoldingsPos"),
@@ -43,6 +44,7 @@ SequencesStatistics::SequencesStatistics()
smtStatisticsRegistry()->registerStat(&d_checkRuns);
smtStatisticsRegistry()->registerStat(&d_strategyRuns);
smtStatisticsRegistry()->registerStat(&d_inferences);
+ smtStatisticsRegistry()->registerStat(&d_inferencesNoPf);
smtStatisticsRegistry()->registerStat(&d_cdSimplifications);
smtStatisticsRegistry()->registerStat(&d_reductions);
smtStatisticsRegistry()->registerStat(&d_regexpUnfoldingsPos);
@@ -63,6 +65,7 @@ SequencesStatistics::~SequencesStatistics()
smtStatisticsRegistry()->unregisterStat(&d_checkRuns);
smtStatisticsRegistry()->unregisterStat(&d_strategyRuns);
smtStatisticsRegistry()->unregisterStat(&d_inferences);
+ smtStatisticsRegistry()->unregisterStat(&d_inferencesNoPf);
smtStatisticsRegistry()->unregisterStat(&d_cdSimplifications);
smtStatisticsRegistry()->unregisterStat(&d_reductions);
smtStatisticsRegistry()->unregisterStat(&d_regexpUnfoldingsPos);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback