3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00
This commit is contained in:
Nikolaj Bjorner 2021-10-13 17:16:34 -07:00
parent 96e117d78c
commit fd77f0c111

View file

@ -131,16 +131,16 @@ namespace opt {
soft.set_value(l_undef);
}
model_ref mdl;
s().get_model(mdl);
s().get_model(mdl);
if (mdl) {
TRACE("opt", tout << *mdl << "\n";);
for (auto & soft : m_soft) {
if (!mdl->is_true(soft.s)) {
if (!mdl->is_true(soft.s))
break;
}
soft.set_value(l_true);
assert_value(soft);
}
update_bounds();
update_assignment();
}
}