summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/model_engine.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-01-26 14:23:51 -0600
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-01-26 14:24:02 -0600
commitd0add0eb12cac4e9cbcf09fe60724d280889002d (patch)
tree217528663e877f15832a5cb00005e5a15a69f2ee /src/theory/quantifiers/model_engine.cpp
parent160572318e251a98a58b3f506c31fb233070d477 (diff)
More optimization of QCF. Fixed InstMatchTrie for caching instantiations. Use non-context dependent cache for instantiations when not incremental. Instantiate from relevant domain when no other instantiations apply. Minor cleanup of relevance for triggers.
Diffstat (limited to 'src/theory/quantifiers/model_engine.cpp')
-rw-r--r--src/theory/quantifiers/model_engine.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/theory/quantifiers/model_engine.cpp b/src/theory/quantifiers/model_engine.cpp
index 9e3e77c8e..ef4e67a68 100644
--- a/src/theory/quantifiers/model_engine.cpp
+++ b/src/theory/quantifiers/model_engine.cpp
@@ -50,12 +50,6 @@ QuantifiersModule( qe ){
Trace("model-engine-debug") << "...make default model builder." << std::endl;
d_builder = new QModelBuilderDefault( c, qe );
}
-
- if( options::fmfRelevantDomain() ){
- d_rel_dom = new RelevantDomain( qe, qe->getModel() );
- }else{
- d_rel_dom = NULL;
- }
}
void ModelEngine::check( Theory::Effort e ){
@@ -192,10 +186,6 @@ int ModelEngine::checkModel(){
}
}
}
- //relevant domain?
- if( d_rel_dom ){
- d_rel_dom->compute();
- }
d_triedLemmas = 0;
d_addedLemmas = 0;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback