summaryrefslogtreecommitdiff
path: root/src/theory/uf
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-09-22 21:10:51 +0000
committerMorgan Deters <mdeters@gmail.com>2012-09-22 21:10:51 +0000
commite2611a54c5479086df0c4a80f56597aae80b5c4e (patch)
treeb0d98600bd70147f28197883d3481614b87d76f6 /src/theory/uf
parent8b106b77c11d12d16abac845ed704845ef888bd2 (diff)
Separate public-facing and internal-facing interfaces to Statistics.
The external interface (e.g., what's answered by ExprManager::getStatistics() and SmtEngine::getStatistics()) is a snapshot of the current statistics (rather than a reference to the actual StatisticsRegistry). The StatisticsRegistry is now internal-only. However, it's built as a convenience library so that the parser and driver can use it too (by re-linking against it). This is part of the ongoing effort to clean up the public interface. (this commit was certified error- and warning-free by the test-and-commit script.)
Diffstat (limited to 'src/theory/uf')
-rw-r--r--src/theory/uf/equality_engine.h2
-rw-r--r--src/theory/uf/inst_strategy.h2
-rw-r--r--src/theory/uf/symmetry_breaker.h2
-rw-r--r--src/theory/uf/theory_uf_instantiator.h2
-rw-r--r--src/theory/uf/theory_uf_strong_solver.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/theory/uf/equality_engine.h b/src/theory/uf/equality_engine.h
index cae169081..e32a34707 100644
--- a/src/theory/uf/equality_engine.h
+++ b/src/theory/uf/equality_engine.h
@@ -30,7 +30,7 @@
#include "expr/kind_map.h"
#include "context/cdo.h"
#include "util/output.h"
-#include "util/stats.h"
+#include "util/statistics_registry.h"
#include "theory/rewriter.h"
#include "theory/theory.h"
diff --git a/src/theory/uf/inst_strategy.h b/src/theory/uf/inst_strategy.h
index 663720326..6369c6ba3 100644
--- a/src/theory/uf/inst_strategy.h
+++ b/src/theory/uf/inst_strategy.h
@@ -25,7 +25,7 @@
#include "context/context.h"
#include "context/context_mm.h"
-#include "util/stats.h"
+#include "util/statistics_registry.h"
#include "theory/uf/theory_uf.h"
namespace CVC4 {
diff --git a/src/theory/uf/symmetry_breaker.h b/src/theory/uf/symmetry_breaker.h
index 2b7b10209..fe97e8afc 100644
--- a/src/theory/uf/symmetry_breaker.h
+++ b/src/theory/uf/symmetry_breaker.h
@@ -52,7 +52,7 @@
#include "expr/node.h"
#include "expr/node_builder.h"
-#include "util/stats.h"
+#include "util/statistics_registry.h"
namespace CVC4 {
namespace theory {
diff --git a/src/theory/uf/theory_uf_instantiator.h b/src/theory/uf/theory_uf_instantiator.h
index 59b8f36a4..1929e0e47 100644
--- a/src/theory/uf/theory_uf_instantiator.h
+++ b/src/theory/uf/theory_uf_instantiator.h
@@ -25,7 +25,7 @@
#include "context/context_mm.h"
#include "context/cdchunk_list.h"
-#include "util/stats.h"
+#include "util/statistics_registry.h"
#include "theory/uf/theory_uf.h"
#include "theory/quantifiers/trigger.h"
#include "util/ntuple.h"
diff --git a/src/theory/uf/theory_uf_strong_solver.h b/src/theory/uf/theory_uf_strong_solver.h
index 8c63b4308..d78a43498 100644
--- a/src/theory/uf/theory_uf_strong_solver.h
+++ b/src/theory/uf/theory_uf_strong_solver.h
@@ -25,7 +25,7 @@
#include "context/context_mm.h"
#include "context/cdchunk_list.h"
-#include "util/stats.h"
+#include "util/statistics_registry.h"
namespace CVC4 {
namespace theory {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback