mirror of
https://github.com/Z3Prover/z3
synced 2025-05-01 21:05:52 +00:00
Merge resolve_bailout into resolve_conflict
This commit is contained in:
parent
39d42913cf
commit
ec1e6725de
3 changed files with 27 additions and 77 deletions
|
@ -54,7 +54,7 @@ namespace polysat {
|
|||
pvar conflict_var() const { return m_conflict_var; }
|
||||
|
||||
bool is_bailout() const { return m_bailout; }
|
||||
void set_bailout() { m_bailout = true; }
|
||||
void set_bailout() { SASSERT(!is_bailout()); m_bailout = true; }
|
||||
|
||||
bool empty() const {
|
||||
return m_constraints.empty() && !m_needs_model && m_conflict_var == null_var;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue