about summary refs log tree commit diff homepage
path: root/lib/Solver/SolverStats.cpp
diff options
context:
space:
mode:
authorCristian Cadar <cristic@cs.stanford.edu>2013-07-11 16:21:15 +0000
committerCristian Cadar <cristic@cs.stanford.edu>2013-07-11 16:21:15 +0000
commitd47bf6b91faeab6c97a06108ed35b2b7ad0a45fc (patch)
tree2314b8f81c311f9077af964b9eb9872cfdede220 /lib/Solver/SolverStats.cpp
parente4ce97b38411de5d972ee4cf89cede342b7f82f0 (diff)
downloadklee-d47bf6b91faeab6c97a06108ed35b2b7ad0a45fc.tar.gz
Fixed and improved the stats on (cex)cache hits and misses.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@186097 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Solver/SolverStats.cpp')
-rw-r--r--lib/Solver/SolverStats.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Solver/SolverStats.cpp b/lib/Solver/SolverStats.cpp
index 1f85fe88..9d6963cf 100644
--- a/lib/Solver/SolverStats.cpp
+++ b/lib/Solver/SolverStats.cpp
@@ -17,6 +17,8 @@ Statistic stats::queriesInvalid("QueriesInvalid", "Qiv");
 Statistic stats::queriesValid("QueriesValid", "Qv");
 Statistic stats::queryCacheHits("QueryCacheHits", "QChits") ;
 Statistic stats::queryCacheMisses("QueryCacheMisses", "QCmisses");
+Statistic stats::queryCexCacheHits("QueryCexCacheHits", "QCexHits") ;
+Statistic stats::queryCexCacheMisses("QueryCexCacheMisses", "QCexMisses");
 Statistic stats::queryConstructTime("QueryConstructTime", "QBtime") ;
 Statistic stats::queryConstructs("QueriesConstructs", "QB");
 Statistic stats::queryCounterexamples("QueriesCEX", "Qcex");