summaryrefslogtreecommitdiff
path: root/src/options
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-07-17 19:53:14 +0200
committerGitHub <noreply@github.com>2018-07-17 19:53:14 +0200
commit06440f4ed1f4de8612740dc21b63ac6967404f31 (patch)
treeec0f38350daafcfbf8a0b447be981d56e483710b /src/options
parent3fc5f5df9a887469cdd9183ca5793578cfb773cb (diff)
Minor cleanup and fixes for conflict-based instantiation (#2123)
Diffstat (limited to 'src/options')
-rw-r--r--src/options/options_handler.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/options/options_handler.cpp b/src/options/options_handler.cpp
index 8f179531b..6f9d31024 100644
--- a/src/options/options_handler.cpp
+++ b/src/options/options_handler.cpp
@@ -331,12 +331,6 @@ prop-eq \n\
conflict \n\
+ Apply QCF algorithm to find conflicts only.\n\
\n\
-partial \n\
-+ Apply QCF algorithm to instantiate heuristically as well. \n\
-\n\
-mc \n\
-+ Apply QCF algorithm in a complete way, so that a model is ensured when it fails. \n\
-\n\
";
const std::string OptionsHandler::s_userPatModeHelp = "\
@@ -716,8 +710,6 @@ theory::quantifiers::QcfMode OptionsHandler::stringToQcfMode(std::string option,
return theory::quantifiers::QCF_CONFLICT_ONLY;
} else if(optarg == "default" || optarg == "prop-eq") {
return theory::quantifiers::QCF_PROP_EQ;
- } else if(optarg == "partial") {
- return theory::quantifiers::QCF_PARTIAL;
} else if(optarg == "help") {
puts(s_qcfModeHelp.c_str());
exit(1);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback