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:
parent
82dc254d0e
commit
e4cc6e29ca
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue