diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2013-03-11 17:11:06 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2013-03-11 17:11:06 +0000 |
commit | 454dfc67045fbbc3358b28f855f3af0af31daf47 (patch) | |
tree | 103a8f9d03a6fa38e111addc0e5e0015d943646b /lib/Basic | |
parent | d33011aea4f2603c1413dddc5937eca5f6091f1b (diff) | |
download | klee-454dfc67045fbbc3358b28f855f3af0af31daf47.tar.gz |
Patch by Dan Liew which unifies the solver construction between KLEE
and Kleaver and fixes --use-query-log in Kleaver. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@176811 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic')
-rw-r--r-- | lib/Basic/CmdLineOptions.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Basic/CmdLineOptions.cpp b/lib/Basic/CmdLineOptions.cpp index 714ae131..bc4c0023 100644 --- a/lib/Basic/CmdLineOptions.cpp +++ b/lib/Basic/CmdLineOptions.cpp @@ -26,6 +26,10 @@ llvm::cl::opt<bool> UseIndependentSolver("use-independent-solver", llvm::cl::init(true), llvm::cl::desc("Use constraint independence (default=on)")); + +llvm::cl::opt<bool> +DebugValidateSolver("debug-validate-solver", + llvm::cl::init(false)); llvm::cl::opt<int> MinQueryTimeToLog("min-query-time-to-log", |