mirror of
https://github.com/Z3Prover/z3
synced 2025-10-10 01:41:57 +00:00
dbl-max
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
42cc7c7f87
commit
d684d4fce0
3 changed files with 10 additions and 8 deletions
|
@ -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; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue