summaryrefslogtreecommitdiff
path: root/src/theory/bv/theory_bv.cpp
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/bv/theory_bv.cpp
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/bv/theory_bv.cpp')
-rw-r--r--src/theory/bv/theory_bv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/bv/theory_bv.cpp b/src/theory/bv/theory_bv.cpp
index f6e056f42..55a0ff46b 100644
--- a/src/theory/bv/theory_bv.cpp
+++ b/src/theory/bv/theory_bv.cpp
@@ -39,7 +39,7 @@ TheoryBV::TheoryBV(context::Context* c,
d_ufRemByZero(),
d_rewriter(),
d_state(c, u, valuation),
- d_im(*this, d_state, nullptr),
+ d_im(*this, d_state, nullptr, "theory::bv"),
d_notify(d_im)
{
switch (options::bvSolver())
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback