summaryrefslogtreecommitdiff
path: root/src/smt/smt_statistics_registry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/smt/smt_statistics_registry.cpp')
-rw-r--r--src/smt/smt_statistics_registry.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/smt/smt_statistics_registry.cpp b/src/smt/smt_statistics_registry.cpp
new file mode 100644
index 000000000..5aa9085f5
--- /dev/null
+++ b/src/smt/smt_statistics_registry.cpp
@@ -0,0 +1,29 @@
+/********************* */
+/*! \file smt_statistic_registry.cpp
+ ** \verbatim
+ ** Original author: Tim King
+ ** Major contributors: none
+ ** Minor contributors (to current version): none
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2009-2016 New York University and The University of Iowa
+ ** See the file COPYING in the top-level source directory for licensing
+ ** information.\endverbatim
+ **
+ ** \brief Accessor for the SmtEngine's StatisticsRegistry.
+ **
+ ** Accessor for the SmtEngine's StatisticsRegistry.
+ **/
+
+
+#include "smt/smt_statistics_registry.h"
+
+#include "smt/smt_engine_scope.h"
+#include "util/statistics_registry.h"
+
+namespace CVC4 {
+
+StatisticsRegistry* smtStatisticsRegistry() {
+ return smt::SmtScope::currentStatisticsRegistry();
+}
+
+}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback