summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-03-12 15:25:06 -0500
committerGitHub <noreply@github.com>2020-03-12 15:25:06 -0500
commit920343a4a5586297dd98305b83785207025083b8 (patch)
tree8c62326ddf5b2ff3c155b8c8eb9f1c863a917b7e
parent9803bedfdfe42bf472654ed8e11bcc888de5df67 (diff)
Remove local theory extension option (#4048)
This option was unimplemented and was equivalent to setting the instantiation level of all quantified formulas to 0.
-rw-r--r--src/options/quantifiers_options.toml9
-rw-r--r--src/smt/smt_engine.cpp6
2 files changed, 0 insertions, 15 deletions
diff --git a/src/options/quantifiers_options.toml b/src/options/quantifiers_options.toml
index e104101ef..6e0460ae9 100644
--- a/src/options/quantifiers_options.toml
+++ b/src/options/quantifiers_options.toml
@@ -1926,15 +1926,6 @@ header = "options/quantifiers_options.h"
### Local theory extensions options
[[option]]
- name = "localTheoryExt"
- category = "regular"
- long = "local-t-ext"
- type = "bool"
- default = "false"
- read_only = true
- help = "do instantiation based on local theory extensions"
-
-[[option]]
name = "lteRestrictInstClosure"
category = "regular"
long = "lte-restrict-inst-closure"
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index fbc5821ce..5fc0189c3 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -1814,12 +1814,6 @@ void SmtEngine::setDefaults() {
}
}
- //local theory extensions
- if( options::localTheoryExt() ){
- if( !options::instMaxLevel.wasSetByUser() ){
- options::instMaxLevel.set( 0 );
- }
- }
if( options::instMaxLevel()!=-1 ){
Notice() << "SmtEngine: turning off cbqi to support instMaxLevel" << endl;
options::cbqi.set(false);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback