summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers_engine.cpp
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2016-09-12 14:45:38 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2016-09-12 14:45:38 -0500
commit685b1f3769decafbff1c5b929d4ce01169ff9d81 (patch)
treeede90609b6cbd692a85a2633eae7a86914159101 /src/theory/quantifiers_engine.cpp
parentab930adcd1531fb7006740d6787d990588e3302e (diff)
Remove old implementation of cbqi
Diffstat (limited to 'src/theory/quantifiers_engine.cpp')
-rw-r--r--src/theory/quantifiers_engine.cpp13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/theory/quantifiers_engine.cpp b/src/theory/quantifiers_engine.cpp
index 7c1fd82d3..dc3f0cdd5 100644
--- a/src/theory/quantifiers_engine.cpp
+++ b/src/theory/quantifiers_engine.cpp
@@ -225,15 +225,10 @@ void QuantifiersEngine::finishInit(){
d_modules.push_back( d_inst_engine );
}
if( options::cbqi() ){
- if( options::cbqiSplx() ){
- d_i_cbqi = new quantifiers::InstStrategySimplex( (arith::TheoryArith*)getTheoryEngine()->theoryOf( THEORY_ARITH ), this );
- d_modules.push_back( d_i_cbqi );
- }else{
- d_i_cbqi = new quantifiers::InstStrategyCegqi( this );
- d_modules.push_back( d_i_cbqi );
- if( options::cbqiModel() ){
- needsBuilder = true;
- }
+ d_i_cbqi = new quantifiers::InstStrategyCegqi( this );
+ d_modules.push_back( d_i_cbqi );
+ if( options::cbqiModel() ){
+ needsBuilder = true;
}
}
if( options::ceGuidedInst() ){
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback