aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2017-05-30 11:15:25 -0300
committerGitHub <noreply@github.com>2017-05-30 11:15:25 -0300
commitcf61b3fbc0ded07270ed5a58c637527812fe8dec (patch)
tree80a7961967f4571ad6d710d0407c930f31bb18e9 /lib
parent5dd3eee423c866aac6659dc2db44310737cf201d (diff)
parent95134297ab91f1ab8a59d7535e6fd1f3cf99d20b (diff)
downloadklee-cf61b3fbc0ded07270ed5a58c637527812fe8dec.tar.gz
Merge pull request #655 from Mic92/logging
Fixed some KLEE messages and added build to .gitignore
Diffstat (limited to 'lib')
-rw-r--r--lib/Core/Searcher.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Core/Searcher.cpp b/lib/Core/Searcher.cpp
index c787382f..d15226b3 100644
--- a/lib/Core/Searcher.cpp
+++ b/lib/Core/Searcher.cpp
@@ -539,7 +539,7 @@ ExecutionState &BatchingSearcher::selectState() {
if (lastState) {
double delta = util::getWallTime()-lastStartTime;
if (delta>timeBudget*1.1) {
- klee_message("KLEE: increased time budget from %f to %f\n", timeBudget,
+ klee_message("increased time budget from %f to %f\n", timeBudget,
delta);
timeBudget = delta;
}
@@ -613,7 +613,7 @@ void IterativeDeepeningTimeSearcher::update(
if (baseSearcher->empty()) {
time *= 2;
- klee_message("KLEE: increased time budget to %f\n", time);
+ klee_message("increased time budget to %f\n", time);
std::vector<ExecutionState *> ps(pausedStates.begin(), pausedStates.end());
baseSearcher->update(0, ps, std::vector<ExecutionState *>());
pausedStates.clear();