about summary refs log tree commit diff homepage
path: root/lib/Solver/STPBuilder.cpp
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2019-03-11 14:26:34 +0000
committerMartinNowack <martin.nowack@gmail.com>2019-03-13 10:25:33 +0000
commit6da5297c4997b612e6ccd3c9a4fabc79a2c7f3a3 (patch)
tree98edcffa9abe7a7a5e7d36bfc95c0e3103bcab1e /lib/Solver/STPBuilder.cpp
parentadead5244e89e4ec328c5323482622aa712067a4 (diff)
downloadklee-6da5297c4997b612e6ccd3c9a4fabc79a2c7f3a3.tar.gz
Renamed --use-construct-hash to --use-construct-hash-stp and moved it and use-construct-hash-z3 to the expression building/printing category
Diffstat (limited to 'lib/Solver/STPBuilder.cpp')
-rw-r--r--lib/Solver/STPBuilder.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/Solver/STPBuilder.cpp b/lib/Solver/STPBuilder.cpp
index 8ec35762..57dea28b 100644
--- a/lib/Solver/STPBuilder.cpp
+++ b/lib/Solver/STPBuilder.cpp
@@ -44,9 +44,10 @@ using namespace klee;
 
 namespace {
   llvm::cl::opt<bool>
-  UseConstructHash("use-construct-hash", 
-                   llvm::cl::desc("Use hash-consing during STP query construction."),
-                   llvm::cl::init(true));
+  UseConstructHash("use-construct-hash-stp",
+                   llvm::cl::desc("Use hash-consing during STP query construction (default=true)"),
+                   llvm::cl::init(true),
+                   llvm::cl::cat(klee::ExprCat));
 }
 
 ///