diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2013-01-02 14:49:59 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2013-01-02 14:49:59 +0000 |
commit | d369654e361782b3f4a52303114db11959a346f7 (patch) | |
tree | 19c63c9b01df6ffcc5118f460fb6446b734d91e1 /include | |
parent | c7db4230beef3b81542edb5d7ae6ca606d0567dd (diff) | |
download | klee-d369654e361782b3f4a52303114db11959a346f7.tar.gz |
Patch by Tomasz Kuchta that refactors the logging code, by introducing a new logging class hierarchy.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@171387 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/Solver.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/klee/Solver.h b/include/klee/Solver.h index db14f003..94e7d477 100644 --- a/include/klee/Solver.h +++ b/include/klee/Solver.h @@ -218,7 +218,8 @@ namespace klee { /// createSMTLIBLoggingSolver - Create a solver which will forward all queries /// after writing them to the given path in .smt2 format. - Solver *createSMTLIBLoggingSolver(Solver *s, std::string path); + Solver *createSMTLIBLoggingSolver(Solver *s, std::string path, + int minQueryTimeToLog); /// createDummySolver - Create a dummy solver implementation which always |