summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers_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_engine.cpp
parent5254bf67589daeb387778cf9f392ddd8285b75cb (diff)
First draft of ambqi_builder (new implementation of MBQI based on disjoint sets).
Diffstat (limited to 'src/theory/quantifiers_engine.cpp')
-rw-r--r--src/theory/quantifiers_engine.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/theory/quantifiers_engine.cpp b/src/theory/quantifiers_engine.cpp
index b79c0da69..929a638d7 100644
--- a/src/theory/quantifiers_engine.cpp
+++ b/src/theory/quantifiers_engine.cpp
@@ -60,6 +60,8 @@ d_lemmas_produced_c(u){
d_model = new quantifiers::fmcheck::FirstOrderModelFmc( this, c, "FirstOrderModelFmc" );
}else if( options::mbqiMode()==quantifiers::MBQI_INTERVAL ){
d_model = new quantifiers::FirstOrderModelQInt( this, c, "FirstOrderModelQInt" );
+ }else if( options::mbqiMode()==quantifiers::MBQI_ABS ){
+ d_model = new quantifiers::FirstOrderModelAbs( this, c, "FirstOrderModelAbs" );
}else{
d_model = new quantifiers::FirstOrderModelIG( this, c, "FirstOrderModelIG" );
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback