summaryrefslogtreecommitdiff
path: root/src/options
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-07-02 20:08:53 -0500
committerGitHub <noreply@github.com>2018-07-02 20:08:53 -0500
commit0dec323ac1b45ce1ca194e9bb2a335c8def525d2 (patch)
treec201933c725ddfd7f68a1e03db8e4f85242d0d6c /src/options
parentbe58c8ead1d36ab3625faf848b2ebdce8d5de8a9 (diff)
Remove miscellaneous dead and unused code from quantifiers (#2121)
Diffstat (limited to 'src/options')
-rw-r--r--src/options/options_handler.cpp5
-rw-r--r--src/options/quantifiers_modes.h2
2 files changed, 0 insertions, 7 deletions
diff --git a/src/options/options_handler.cpp b/src/options/options_handler.cpp
index 513f9138c..2b1d72802 100644
--- a/src/options/options_handler.cpp
+++ b/src/options/options_handler.cpp
@@ -299,9 +299,6 @@ gen-ev \n\
+ Use model-based quantifier instantiation algorithm from CADE 24 finite\n\
model finding paper based on generalizing evaluations.\n\
\n\
-fmc-interval \n\
-+ Same as default, but with intervals for models of integer functions.\n\
-\n\
abs \n\
+ Use abstract MBQI algorithm (uses disjoint sets). \n\
\n\
@@ -650,8 +647,6 @@ theory::quantifiers::MbqiMode OptionsHandler::stringToMbqiMode(
return theory::quantifiers::MBQI_NONE;
} else if(optarg == "default" || optarg == "fmc") {
return theory::quantifiers::MBQI_FMC;
- } else if(optarg == "fmc-interval") {
- return theory::quantifiers::MBQI_FMC_INTERVAL;
} else if(optarg == "abs") {
return theory::quantifiers::MBQI_ABS;
} else if(optarg == "trust") {
diff --git a/src/options/quantifiers_modes.h b/src/options/quantifiers_modes.h
index 33c047d23..a949b97be 100644
--- a/src/options/quantifiers_modes.h
+++ b/src/options/quantifiers_modes.h
@@ -59,8 +59,6 @@ enum MbqiMode {
MBQI_NONE,
/** default, mbqi from Section 5.4.2 of AJR thesis */
MBQI_FMC,
- /** mbqi with integer intervals */
- MBQI_FMC_INTERVAL,
/** abstract mbqi algorithm */
MBQI_ABS,
/** mbqi trust (produce no instantiations) */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback