about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
authorHristina Palikareva <h.palikareva@imperial.ac.uk>2013-08-06 16:15:56 +0100
committerHristina Palikareva <h.palikareva@imperial.ac.uk>2013-08-06 16:15:56 +0100
commit9abe9572e68748002d8bbb789587e2a036ff760d (patch)
tree47c8acb9d07889e716a7a8d8240e7e343dd92d1f /include
parent357ecb515baaa018a5b4b611f7cb4000e91315d3 (diff)
downloadklee-9abe9572e68748002d8bbb789587e2a036ff760d.tar.gz
Renaming solver-related command-line options in order to decouple them from STP. More specifically, command-line options max-stp-time, use-forked-stp and stp-optimize-divides renamed to max-solver-time, use-forked-solver and solver-optimize-divides, respectively.
Option of running the SMT solver in a separate process (i.e. forked) set to true by default.

Options of running SMT solver forked and with optimized divides made available to Kleaver as well.
Diffstat (limited to 'include')
-rw-r--r--include/klee/CommandLine.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/klee/CommandLine.h b/include/klee/CommandLine.h
index f303ae6c..38b22c6f 100644
--- a/include/klee/CommandLine.h
+++ b/include/klee/CommandLine.h
@@ -22,7 +22,11 @@ extern llvm::cl::opt<bool> DebugValidateSolver;
   
 extern llvm::cl::opt<int> MinQueryTimeToLog;
 
-extern llvm::cl::opt<double> MaxSTPTime;
+extern llvm::cl::opt<double> MaxCoreSolverTime;
+
+extern llvm::cl::opt<bool> UseForkedCoreSolver;
+
+extern llvm::cl::opt<bool> CoreSolverOptimizeDivides;
 
 ///The different query logging solvers that can switched on/off
 enum QueryLoggingSolverType