diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2012-10-18 19:45:55 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2012-10-18 19:45:55 +0000 |
commit | e2a2fceee17dbf7323b2dac00feb2293365fcc34 (patch) | |
tree | fe7b22c2315f5b088ec5fb7463de5542dee65918 /lib/Solver/SolverStats.cpp | |
parent | a1d4a739609e2a491e846c765c05ddd0b9c79935 (diff) | |
download | klee-e2a2fceee17dbf7323b2dac00feb2293365fcc34.tar.gz |
Nice patch by Hristina Palikareva that removes the dependency on STP
arrays from the Array and UpdateNode classes. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@166214 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Solver/SolverStats.cpp')
-rw-r--r-- | lib/Solver/SolverStats.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Solver/SolverStats.cpp b/lib/Solver/SolverStats.cpp index 9d48792a..1f85fe88 100644 --- a/lib/Solver/SolverStats.cpp +++ b/lib/Solver/SolverStats.cpp @@ -21,3 +21,7 @@ Statistic stats::queryConstructTime("QueryConstructTime", "QBtime") ; Statistic stats::queryConstructs("QueriesConstructs", "QB"); Statistic stats::queryCounterexamples("QueriesCEX", "Qcex"); Statistic stats::queryTime("QueryTime", "Qtime"); + +#ifdef DEBUG +Statistic stats::arrayHashTime("ArrayHashTime", "AHtime"); +#endif |