mirror of
https://github.com/Z3Prover/z3
synced 2025-08-20 02:00:22 +00:00
bailout state: add premises of assignment
This commit is contained in:
parent
1b370727b1
commit
d65dc82ef0
1 changed files with 3 additions and 3 deletions
|
@ -499,9 +499,6 @@ namespace polysat {
|
||||||
|
|
||||||
s.inc_activity(v);
|
s.inc_activity(v);
|
||||||
m_vars.remove(v);
|
m_vars.remove(v);
|
||||||
|
|
||||||
if (is_bailout())
|
|
||||||
goto bailout;
|
|
||||||
|
|
||||||
if (j.is_propagation()) {
|
if (j.is_propagation()) {
|
||||||
for (auto const& c : s.m_viable.get_constraints(v))
|
for (auto const& c : s.m_viable.get_constraints(v))
|
||||||
|
@ -512,6 +509,9 @@ namespace polysat {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (is_bailout())
|
||||||
|
goto bailout;
|
||||||
|
|
||||||
LOG("try-explain v" << v);
|
LOG("try-explain v" << v);
|
||||||
if (try_explain(v))
|
if (try_explain(v))
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue