3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-10 01:41:57 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-02-07 15:57:25 -08:00
parent 42cc7c7f87
commit d684d4fce0
3 changed files with 10 additions and 8 deletions

View file

@ -60,6 +60,8 @@ namespace sat {
return out;
}
const double dbl_max = 100000000.0;
class lookahead {
solver& m_s;
unsigned m_num_vars;
@ -186,7 +188,7 @@ namespace sat {
m_is_decision.reset();
m_cube.reset();
m_freevars_threshold = 0;
m_psat_threshold = 100000000.0;
m_psat_threshold = dbl_max;
reset_stats();
}
void reset_stats() { m_conflicts = 0; m_cutoffs = 0; }