summaryrefslogtreecommitdiff
path: root/src/main/main.cpp
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/main/main.cpp
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/main/main.cpp')
-rw-r--r--src/main/main.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/main/main.cpp b/src/main/main.cpp
index 70f2783a5..73936526f 100644
--- a/src/main/main.cpp
+++ b/src/main/main.cpp
@@ -26,6 +26,7 @@
#include "main/main.h"
#include "main/interactive_shell.h"
+#include "main/command_executor.h"
#include "parser/parser.h"
#include "parser/parser_builder.h"
#include "parser/parser_exception.h"
@@ -38,7 +39,7 @@
#include "theory/uf/options.h"
#include "util/output.h"
#include "util/result.h"
-#include "util/stats.h"
+#include "util/statistics.h"
using namespace std;
using namespace CVC4;
@@ -66,8 +67,8 @@ int main(int argc, char* argv[]) {
*opts[options::out] << "unknown" << endl;
#endif
*opts[options::err] << "CVC4 Error:" << endl << e << endl;
- if(opts[options::statistics] && pStatistics != NULL) {
- pStatistics->flushInformation(*opts[options::err]);
+ if(opts[options::statistics] && pExecutor != NULL) {
+ pExecutor->flushStatistics(*opts[options::err]);
}
}
exit(1);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback