From 06440f4ed1f4de8612740dc21b63ac6967404f31 Mon Sep 17 00:00:00 2001 From: Andrew Reynolds Date: Tue, 17 Jul 2018 19:53:14 +0200 Subject: Minor cleanup and fixes for conflict-based instantiation (#2123) --- src/options/options_handler.cpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/options/options_handler.cpp') 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); -- cgit v1.2.3