summaryrefslogtreecommitdiff
path: root/src/prop
diff options
context:
space:
mode:
Diffstat (limited to 'src/prop')
-rw-r--r--src/prop/sat.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/prop/sat.h b/src/prop/sat.h
index ea782234b..b80b0f705 100644
--- a/src/prop/sat.h
+++ b/src/prop/sat.h
@@ -270,10 +270,9 @@ inline SatSolver::SatSolver(PropEngine* propEngine, TheoryEngine* theoryEngine,
// Setup the verbosity
d_minisat->verbosity = (Options::current()->verbosity > 0) ? 1 : -1;
- // No random choices
- if(Debug.isOn("no_rnd_decisions")) {
- d_minisat->random_var_freq = 0;
- }
+ // Setup the random decision parameters
+ d_minisat->random_var_freq = Options::current()->satRandomFreq;
+ d_minisat->random_seed = Options::current()->satRandomSeed;
d_statistics.init(d_minisat);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback