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 /tools/kleaver | |
parent | fd1200a9ac4b3ea17f20c52ac1b7e5d549edbae1 (diff) | |
download | klee-bb933726973a7fbdbc59953dfe7ca4cfc242e971.tar.gz |
stats: rename QueriesConstructs to QueryConstructs
Diffstat (limited to 'tools/kleaver')
-rw-r--r-- | tools/kleaver/main.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/kleaver/main.cpp b/tools/kleaver/main.cpp index 70b51208..7e44a70a 100644 --- a/tools/kleaver/main.cpp +++ b/tools/kleaver/main.cpp @@ -302,15 +302,15 @@ static bool EvaluateInputAST(const char *Filename, if (uint64_t queries = *theStatisticManager->getStatisticByName("Queries")) { llvm::outs() << "--\n" - << "total queries = " << queries << "\n" - << "total queries constructs = " - << *theStatisticManager->getStatisticByName("QueriesConstructs") << "\n" + << "total queries = " << queries << '\n' + << "total query constructs = " + << *theStatisticManager->getStatisticByName("QueryConstructs") << '\n' << "valid queries = " - << *theStatisticManager->getStatisticByName("QueriesValid") << "\n" + << *theStatisticManager->getStatisticByName("QueriesValid") << '\n' << "invalid queries = " - << *theStatisticManager->getStatisticByName("QueriesInvalid") << "\n" + << *theStatisticManager->getStatisticByName("QueriesInvalid") << '\n' << "query cex = " - << *theStatisticManager->getStatisticByName("QueriesCEX") << "\n"; + << *theStatisticManager->getStatisticByName("QueriesCEX") << '\n'; } return success; |