aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/klee/Solver.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/klee/Solver.h b/include/klee/Solver.h
index dc787ad6..09cf4b47 100644
--- a/include/klee/Solver.h
+++ b/include/klee/Solver.h
@@ -157,7 +157,9 @@ namespace klee {
///
/// \param useForkedSTP - Whether STP should be run in a separate process
/// (required for using timeouts).
- STPSolver(bool useForkedSTP);
+ /// \param optimizeDivides - Whether constant division operations should
+ /// be optimized into add/shift/multiply operations.
+ STPSolver(bool useForkedSTP, bool optimizeDivides = true);