summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorKshitij Bansal <kshitij@cs.nyu.edu>2012-06-08 05:56:08 +0000
committerKshitij Bansal <kshitij@cs.nyu.edu>2012-06-08 05:56:08 +0000
commit8cd22903675724e29249ce089ee77c7c4d3897fb (patch)
tree64ea92a2a0f8721b7e1b15796824f6259567aa75 /src/main
parent6685546d585212559b97d5722161ad52ff5c4121 (diff)
Merge from decision branch (till r3663)
(no performace or search behavior changes expected)
Diffstat (limited to 'src/main')
-rw-r--r--src/main/driver.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/main/driver.cpp b/src/main/driver.cpp
index ef6b99715..042a8ef1d 100644
--- a/src/main/driver.cpp
+++ b/src/main/driver.cpp
@@ -3,7 +3,7 @@
** \verbatim
** Original author: mdeters
** Major contributors: cconway
- ** Minor contributors (to current version): barrett, dejan, taking
+ ** Minor contributors (to current version): barrett, dejan, taking, kshitij
** This file is part of the CVC4 prototype.
** Copyright (c) 2009, 2010, 2011, 2012 The Analysis of Computer Systems Group (ACSys)
** Courant Institute of Mathematical Sciences
@@ -82,6 +82,10 @@ void printUsage(Options& options, bool full) {
int runCvc4(int argc, char* argv[], Options& options) {
+ // Timer statistic
+ TimerStat s_totalTime("totalTime");
+ s_totalTime.start();
+
// For the signal handlers' benefit
pOptions = &options;
@@ -161,6 +165,10 @@ int runCvc4(int argc, char* argv[], Options& options) {
// Auto-detect input language by filename extension
const char* filename = inputFromStdin ? "<stdin>" : argv[firstArgIndex];
+ // Timer statistic
+ RegisterStatistic statTotalTime(exprMgr, &s_totalTime);
+
+ // Filename statistics
ReferenceStat< const char* > s_statFilename("filename", filename);
RegisterStatistic statFilenameReg(exprMgr, &s_statFilename);
@@ -308,6 +316,8 @@ int runCvc4(int argc, char* argv[], Options& options) {
ReferenceStat< Result > s_statSatResult("sat/unsat", result);
RegisterStatistic statSatResultReg(exprMgr, &s_statSatResult);
+ s_totalTime.stop();
+
if(options.statistics) {
pStatistics->flushInformation(*options.err);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback