summaryrefslogtreecommitdiff
path: root/src/theory/strings/sequences_stats.cpp
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2020-03-22 21:05:37 -0700
committerGitHub <noreply@github.com>2020-03-22 21:05:37 -0700
commitc9b7c3d6fcd49b6d75a85e1316e9918374d1ebbe (patch)
tree481ebcabeb01c576c5ae51269275ecd7ade9d4f3 /src/theory/strings/sequences_stats.cpp
parentc98ba7775ecb8a192e2a93735885163234546be3 (diff)
Collect statistics about normal form inferences (#4127)
This commit adds code to count the number of inferences made of each inference type for normal form inferences. It extends the Inference enum in `infer_info.h` and adds two new `sendInference()` methods in the `InferenceManager` to send and count inferences that have a corresonding entry in the `Inference` enum.
Diffstat (limited to 'src/theory/strings/sequences_stats.cpp')
-rw-r--r--src/theory/strings/sequences_stats.cpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/theory/strings/sequences_stats.cpp b/src/theory/strings/sequences_stats.cpp
new file mode 100644
index 000000000..0f1e93599
--- /dev/null
+++ b/src/theory/strings/sequences_stats.cpp
@@ -0,0 +1,37 @@
+/********************* */
+/*! \file sequences_stats.cpp
+ ** \verbatim
+ ** Top contributors (to current version):
+ ** Andres Noetzli
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2009-2020 by the authors listed in the file AUTHORS
+ ** in the top-level source directory) and their institutional affiliations.
+ ** All rights reserved. See the file COPYING in the top-level source
+ ** directory for licensing information.\endverbatim
+ **
+ ** \brief Statistics for the theory of strings/sequences
+ **/
+
+
+#include "theory/strings/sequences_stats.h"
+
+#include "smt/smt_statistics_registry.h"
+
+namespace CVC4 {
+namespace theory {
+namespace strings {
+
+SequencesStatistics::SequencesStatistics()
+ : d_inferences("theory::strings::inferences")
+{
+ smtStatisticsRegistry()->registerStat(&d_inferences);
+}
+
+SequencesStatistics::~SequencesStatistics()
+{
+ smtStatisticsRegistry()->unregisterStat(&d_inferences);
+}
+
+}
+}
+}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback