3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-08 12:11:23 +00:00

Revert "WMax conflict budget bug fix"

This reverts commit ab8d3cdc44.
This commit is contained in:
TheRealNebus 2018-04-26 22:39:45 +01:00
parent ab8d3cdc44
commit 37852807b0
3 changed files with 6 additions and 6 deletions

View file

@ -84,9 +84,6 @@ namespace opt {
if (m.canceled()) {
is_sat = l_undef;
}
if (is_sat == l_undef) {
break;
}
if (is_sat == l_false) {
TRACE("opt", tout << "Unsat\n";);
break;
@ -100,6 +97,9 @@ namespace opt {
//DEBUG_CODE(verify_cores(cores););
s().assert_expr(fml);
}
else {
//DEBUG_CODE(verify_cores(cores););
}
update_cores(wth(), cores);
wth().init_min_cost(m_upper - m_lower);
trace_bounds("wmax");