diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2013-01-02 14:33:58 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2013-01-02 14:33:58 +0000 |
commit | c7db4230beef3b81542edb5d7ae6ca606d0567dd (patch) | |
tree | f3913e6ea23e0bffbbeff0fc8f5810159c1517f9 /lib/Solver/CachingSolver.cpp | |
parent | 26bf73bf80369a24467fcf1f53165824cbcd5679 (diff) | |
download | klee-c7db4230beef3b81542edb5d7ae6ca606d0567dd.tar.gz |
Patch by Tomasz Kuchta adding a new option (min-query-time-to-log) that enables KLEE to log only the queries exceeding a certain duration, or only those that time out.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@171385 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Solver/CachingSolver.cpp')
-rw-r--r-- | lib/Solver/CachingSolver.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Solver/CachingSolver.cpp b/lib/Solver/CachingSolver.cpp index c0b77429..f7b88855 100644 --- a/lib/Solver/CachingSolver.cpp +++ b/lib/Solver/CachingSolver.cpp @@ -82,6 +82,7 @@ public: return solver->impl->computeInitialValues(query, objects, values, hasSolution); } + bool hasTimeoutOccurred(); }; /** @returns the canonical version of the given query. The reference @@ -234,6 +235,10 @@ bool CachingSolver::computeTruth(const Query& query, return true; } +bool CachingSolver::hasTimeoutOccurred() { + return solver->impl->hasTimeoutOccurred(); +} + /// Solver *klee::createCachingSolver(Solver *_solver) { |