summaryrefslogtreecommitdiff
path: root/src/theory/bags
diff options
context:
space:
mode:
authorGereon Kremer <gkremer@stanford.edu>2021-02-18 23:59:37 +0100
committerGitHub <noreply@github.com>2021-02-18 23:59:37 +0100
commit251bd84f628be2ce5ac2159b48112d9383c071c3 (patch)
treeb50daa2c79679efd64435d58077284a9da53ee9f /src/theory/bags
parent94fdbe4bb325b1ff1874a2e699cad6ea76f44185 (diff)
Add statistic for InferenceId to TheoryInferenceManager. (#5913)
This PR uses the IntegralHistogramStat to obtain statistics about the sent inferences within the TheoryInferenceManager. All theories are adapted to provide a proper name (prefix) for the name of the statistic.
Diffstat (limited to 'src/theory/bags')
-rw-r--r--src/theory/bags/inference_manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/bags/inference_manager.cpp b/src/theory/bags/inference_manager.cpp
index 0ccd06922..827be4c7f 100644
--- a/src/theory/bags/inference_manager.cpp
+++ b/src/theory/bags/inference_manager.cpp
@@ -24,7 +24,7 @@ namespace bags {
InferenceManager::InferenceManager(Theory& t,
SolverState& s,
ProofNodeManager* pnm)
- : InferenceManagerBuffered(t, s, pnm), d_state(s)
+ : InferenceManagerBuffered(t, s, pnm, "theory::bags"), d_state(s)
{
d_true = NodeManager::currentNM()->mkConst(true);
d_false = NodeManager::currentNM()->mkConst(false);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback