summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/model_engine.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2013-07-09 15:43:28 -0500
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2013-07-09 15:43:39 -0500
commita15f4a0e27ab42fb49f1d0cc9197e286862b8426 (patch)
tree6293969f041e9ed04820a4fac6903313f32a06f6 /src/theory/quantifiers/model_engine.cpp
parent446cba594a8b26c03aabb2385b18c2ccad637f2f (diff)
add relevant domain computation
Diffstat (limited to 'src/theory/quantifiers/model_engine.cpp')
-rw-r--r--src/theory/quantifiers/model_engine.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/theory/quantifiers/model_engine.cpp b/src/theory/quantifiers/model_engine.cpp
index 0678e230f..cb8cb8154 100644
--- a/src/theory/quantifiers/model_engine.cpp
+++ b/src/theory/quantifiers/model_engine.cpp
@@ -42,6 +42,11 @@ QuantifiersModule( qe ){
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 ){
@@ -153,6 +158,9 @@ 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