diff options
author | Frank Busse <bb0xfb@gmail.com> | 2019-03-11 11:09:34 +0000 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2019-03-12 00:20:57 +0000 |
commit | 59eb5a817471ad0887706637c4e43ff474e7fb63 (patch) | |
tree | b6f00f7c34d231f8feca0c320970289b8cd136b3 /lib/Core/ExecutorTimers.cpp | |
parent | 0e92811fe7ba7b98425391ef8f8995174afc4f74 (diff) | |
download | klee-59eb5a817471ad0887706637c4e43ff474e7fb63.tar.gz |
time: add double type for span multiplications
Diffstat (limited to 'lib/Core/ExecutorTimers.cpp')
-rw-r--r-- | lib/Core/ExecutorTimers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Core/ExecutorTimers.cpp b/lib/Core/ExecutorTimers.cpp index de24d75d..9d2e8868 100644 --- a/lib/Core/ExecutorTimers.cpp +++ b/lib/Core/ExecutorTimers.cpp @@ -169,7 +169,7 @@ void Executor::processTimers(ExecutionState *current, if (maxInstTime && current && std::find(removedStates.begin(), removedStates.end(), current) == removedStates.end()) { - if (timerTicks*kMilliSecondsPerTick > maxInstTime) { + if (timerTicks * kMilliSecondsPerTick > maxInstTime) { klee_warning("max-instruction-time exceeded: %.2fs", (timerTicks * kMilliSecondsPerTick).toSeconds()); terminateStateEarly(*current, "max-instruction-time exceeded"); } |