summaryrefslogtreecommitdiff
path: root/src/smt/smt_engine.cpp
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2014-10-16 22:16:49 +0200
committerajreynol <andrew.j.reynolds@gmail.com>2014-10-16 22:16:55 +0200
commit9d7378688486cb0dbad207482932dfb4b5d91f95 (patch)
tree11762aa3a877de82f3b578699c40ba37016efb79 /src/smt/smt_engine.cpp
parent6d279143db69b153815165c752eae1432538ec2e (diff)
Make --user-pat=trust default. Fix a few warnings found by Morgan. Minor changes to options.
Diffstat (limited to 'src/smt/smt_engine.cpp')
-rw-r--r--src/smt/smt_engine.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index a69952885..19bfe3ca5 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -1342,6 +1342,13 @@ void SmtEngine::setDefaults() {
options::conjectureFilterModel.set( false );
}
}
+ if( options::conjectureGenPerRound.wasSetByUser() ){
+ if( options::conjectureGenPerRound()>0 ){
+ options::conjectureGen.set( true );
+ }else{
+ options::conjectureGen.set( false );
+ }
+ }
//until bugs 371,431 are fixed
if( ! options::minisatUseElim.wasSetByUser()){
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback