From 9e24ab3100533900ec4ff86582c8339337c74c8c Mon Sep 17 00:00:00 2001 From: Cristian Cadar Date: Mon, 11 Mar 2019 10:18:46 +0000 Subject: Added options in STPSolver.cpp to the constraint solving category --- lib/Solver/STPSolver.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'lib/Solver/STPSolver.cpp') diff --git a/lib/Solver/STPSolver.cpp b/lib/Solver/STPSolver.cpp index 6081ff95..abd0ebc3 100644 --- a/lib/Solver/STPSolver.cpp +++ b/lib/Solver/STPSolver.cpp @@ -14,6 +14,7 @@ #include "klee/SolverImpl.h" #include "klee/Constraints.h" #include "klee/Internal/Support/ErrorHandling.h" +#include "klee/OptionCategories.h" #include "klee/util/Assignment.h" #include "klee/util/ExprUtil.h" @@ -32,11 +33,13 @@ namespace { llvm::cl::opt DebugDumpSTPQueries( "debug-dump-stp-queries", llvm::cl::init(false), - llvm::cl::desc("Dump every STP query to stderr (default=off)")); + llvm::cl::desc("Dump every STP query to stderr (default=off)"), + llvm::cl::cat(klee::SolvingCat)); llvm::cl::opt IgnoreSolverFailures( "ignore-solver-failures", llvm::cl::init(false), - llvm::cl::desc("Ignore any solver failures (default=off)")); + llvm::cl::desc("Ignore any STP solver failures (default=off)"), + llvm::cl::cat(klee::SolvingCat)); } #define vc_bvBoolExtract IAMTHESPAWNOFSATAN -- cgit 1.4.1