3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

fix case when interval is full

This commit is contained in:
Nikolaj Bjorner 2024-03-15 08:55:07 -07:00
parent 82dc254d0e
commit e4cc6e29ca

View file

@ -174,7 +174,8 @@ namespace polysat {
if (!e)
continue;
last = e;
update_value_to_high(val, e);
if (e->interval.is_proper())
update_value_to_high(val, e);
m_explain.push_back({ e, val });
if (is_conflict()) {
m_explain_kind = explain_t::conflict;