summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/model_engine.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-05-06 08:19:04 -0500
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-05-06 08:19:16 -0500
commitc9404d8ecdfbc6da4fd125cefede7a21a5499e4d (patch)
tree153365a3a79246e0ab8dcb9ce475aaeed23bd74b /src/theory/quantifiers/model_engine.cpp
parent5254bf67589daeb387778cf9f392ddd8285b75cb (diff)
First draft of ambqi_builder (new implementation of MBQI based on disjoint sets).
Diffstat (limited to 'src/theory/quantifiers/model_engine.cpp')
-rw-r--r--src/theory/quantifiers/model_engine.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/theory/quantifiers/model_engine.cpp b/src/theory/quantifiers/model_engine.cpp
index 3a4879b42..dfbc01414 100644
--- a/src/theory/quantifiers/model_engine.cpp
+++ b/src/theory/quantifiers/model_engine.cpp
@@ -23,6 +23,7 @@
#include "theory/quantifiers/quantifiers_attributes.h"
#include "theory/quantifiers/full_model_check.h"
#include "theory/quantifiers/qinterval_builder.h"
+#include "theory/quantifiers/ambqi_builder.h"
using namespace std;
using namespace CVC4;
@@ -44,6 +45,9 @@ QuantifiersModule( qe ){
}else if( options::mbqiMode()==MBQI_INTERVAL ){
Trace("model-engine-debug") << "...make interval builder." << std::endl;
d_builder = new QIntervalBuilder( c, qe );
+ }else if( options::mbqiMode()==MBQI_ABS ){
+ Trace("model-engine-debug") << "...make abs mbqi builder." << std::endl;
+ d_builder = new AbsMbqiBuilder( c, qe );
}else if( options::mbqiMode()==MBQI_INST_GEN ){
Trace("model-engine-debug") << "...make inst-gen builder." << std::endl;
d_builder = new QModelBuilderInstGen( c, qe );
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback