diff options
author | Frank Busse <bb0xfb@gmail.com> | 2020-03-19 18:38:33 +0000 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2020-04-08 10:13:20 +0100 |
commit | bb933726973a7fbdbc59953dfe7ca4cfc242e971 (patch) | |
tree | 59d7f055fc1df0be99b813a3def51d4997d79030 /lib/Solver | |
parent | fd1200a9ac4b3ea17f20c52ac1b7e5d549edbae1 (diff) | |
download | klee-bb933726973a7fbdbc59953dfe7ca4cfc242e971.tar.gz |
stats: rename QueriesConstructs to QueryConstructs
Diffstat (limited to 'lib/Solver')
-rw-r--r-- | lib/Solver/SolverStats.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Solver/SolverStats.cpp b/lib/Solver/SolverStats.cpp index f4ad5192..40f0d53f 100644 --- a/lib/Solver/SolverStats.cpp +++ b/lib/Solver/SolverStats.cpp @@ -19,7 +19,7 @@ Statistic stats::queryCacheHits("QueryCacheHits", "QChits") ; Statistic stats::queryCacheMisses("QueryCacheMisses", "QCmisses"); Statistic stats::queryCexCacheHits("QueryCexCacheHits", "QCexHits") ; Statistic stats::queryCexCacheMisses("QueryCexCacheMisses", "QCexMisses"); -Statistic stats::queryConstructs("QueriesConstructs", "QB"); +Statistic stats::queryConstructs("QueryConstructs", "QB"); Statistic stats::queryCounterexamples("QueriesCEX", "Qcex"); Statistic stats::queryTime("QueryTime", "Qtime"); |