mirror of
https://github.com/Z3Prover/z3
synced 2025-08-05 02:40:24 +00:00
Return variable to queue
This commit is contained in:
parent
686f1c6aaf
commit
9773ce60d6
1 changed files with 2 additions and 0 deletions
|
@ -791,6 +791,7 @@ namespace polysat {
|
||||||
// because the fallback solver has access to all univariate constraints
|
// because the fallback solver has access to all univariate constraints
|
||||||
// even if they are not used for intervals (e.g., op_constraints)
|
// even if they are not used for intervals (e.g., op_constraints)
|
||||||
VERIFY(is_conflict());
|
VERIFY(is_conflict());
|
||||||
|
m_free_pvars.unassign_var_eh(v);
|
||||||
return;
|
return;
|
||||||
case find_t::singleton:
|
case find_t::singleton:
|
||||||
// NOTE: see comment on find_t::empty.
|
// NOTE: see comment on find_t::empty.
|
||||||
|
@ -805,6 +806,7 @@ namespace polysat {
|
||||||
case find_t::resource_out:
|
case find_t::resource_out:
|
||||||
verbose_stream() << "TODO: solver::pdecide got resource_out\n";
|
verbose_stream() << "TODO: solver::pdecide got resource_out\n";
|
||||||
m_lim.cancel();
|
m_lim.cancel();
|
||||||
|
m_free_pvars.unassign_var_eh(v);
|
||||||
return;
|
return;
|
||||||
default:
|
default:
|
||||||
UNREACHABLE();
|
UNREACHABLE();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue