summaryrefslogtreecommitdiff
path: root/src/smt
diff options
context:
space:
mode:
Diffstat (limited to 'src/smt')
-rw-r--r--src/smt/smt_engine.cpp11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index 539622877..014d3c603 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -1142,16 +1142,9 @@ void SmtEngine::setLogicInternal() throw() {
options::instWhenMode.set( INST_WHEN_LAST_CALL );
}
}
- if ( ! options::fmfInstGen.wasSetByUser()) {
- //if full model checking is on, disable inst-gen techniques
- if( options::mbqiMode()==quantifiers::MBQI_FMC || options::mbqiMode()==quantifiers::MBQI_INTERVAL ){
- options::fmfInstGen.set( false );
- }else{
- options::fmfInstGen.set( true );
- }
- }
if ( options::fmfBoundInt() ){
- if( options::mbqiMode()!=quantifiers::MBQI_NONE ){
+ if( options::mbqiMode()!=quantifiers::MBQI_NONE &&
+ options::mbqiMode()!=quantifiers::MBQI_FMC_INTERVAL ){
//if bounded integers are set, must use full model check for MBQI
options::mbqiMode.set( quantifiers::MBQI_FMC );
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback