diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2013-03-06 18:28:12 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2013-03-06 18:28:12 +0000 |
commit | 508d56ea83774a2af65e27ce0635840ed9898b49 (patch) | |
tree | 45963d9bee3de401464dcf377bbfd0cd7dadca1f /include | |
parent | c7ffcff9f238448e19fafc6ab84d244a18d687f8 (diff) | |
download | klee-508d56ea83774a2af65e27ce0635840ed9898b49.tar.gz |
Patch by Tomek Kuchta which adds the --max-stp-time option to Kleaver.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@176571 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/CommandLine.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/klee/CommandLine.h b/include/klee/CommandLine.h index 39290e7b..bcb490cf 100644 --- a/include/klee/CommandLine.h +++ b/include/klee/CommandLine.h @@ -20,6 +20,8 @@ extern llvm::cl::opt<bool> UseIndependentSolver; extern llvm::cl::opt<int> MinQueryTimeToLog; +extern llvm::cl::opt<double> MaxSTPTime; + ///The different query logging solvers that can switched on/off enum QueryLoggingSolverType { |