summaryrefslogtreecommitdiff
path: root/src/smt
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2016-09-15 16:10:20 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2016-09-15 16:10:20 -0500
commit1cb5f852ba17c13cc39a9c75e5bc0019c80223e8 (patch)
tree087879d07b352dd644009ecef24fe0392a90f3d7 /src/smt
parent60687e672ea8f485b4071e485b7b0cabc034fd00 (diff)
Begin refactoring of cbqi, remove a few dead options. Pre-skolemize by default in EPR mode.
Diffstat (limited to 'src/smt')
-rw-r--r--src/smt/smt_engine.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index b7997a204..19bc85e3e 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -1748,6 +1748,12 @@ void SmtEngine::setDefaults() {
options::finiteModelFind.set( true );
}
}
+ //EPR
+ if( options::quantEpr() ){
+ if( !options::preSkolemQuant.wasSetByUser() ){
+ options::preSkolemQuant.set( true );
+ }
+ }
//now, have determined whether finite model find is on/off
//apply finite model finding options
@@ -1840,9 +1846,7 @@ void SmtEngine::setDefaults() {
}
if( !options::instWhenMode.wasSetByUser() && options::cbqiModel() ){
//only instantiation should happen at last call when model is avaiable
- if( !options::instWhenMode.wasSetByUser() ){
- options::instWhenMode.set( quantifiers::INST_WHEN_LAST_CALL );
- }
+ options::instWhenMode.set( quantifiers::INST_WHEN_LAST_CALL );
}
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback