summaryrefslogtreecommitdiff
path: root/src/smt
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2015-01-22 17:09:29 +0100
committerajreynol <andrew.j.reynolds@gmail.com>2015-01-22 17:09:29 +0100
commit732dc4232ccf62d9b4a3ddf49fcfbd56efabcd41 (patch)
treeb421689667af1b212d41c9b3c1c04cfc7cb11405 /src/smt
parentd9d13027f1f1e3cc462dc5885dfd0b529bf57512 (diff)
Narrow sygus search space based on NNF and rewriting constant arguments.
Diffstat (limited to 'src/smt')
-rw-r--r--src/smt/smt_engine.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index 0e1be30de..6732b3dc7 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -1350,6 +1350,10 @@ void SmtEngine::setDefaults() {
if( !options::quantConflictFind.wasSetByUser() ){
options::quantConflictFind.set( false );
}
+ //do not allow partial functions
+ if( !options::bitvectorDivByZeroConst.wasSetByUser() ){
+ options::bitvectorDivByZeroConst.set( true );
+ }
}
//implied options...
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback