mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 00:55:31 +00:00
verify model also in release mode
This commit is contained in:
parent
b460150f98
commit
4dc05447ad
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ namespace polysat {
|
|||
else if (is_conflict()) resolve_conflict();
|
||||
else if (should_add_pwatch()) add_pwatch();
|
||||
else if (can_propagate()) propagate();
|
||||
else if (!can_decide()) { LOG_H2("SAT"); SASSERT(verify_sat()); return l_true; }
|
||||
else if (!can_decide()) { LOG_H2("SAT"); VERIFY(verify_sat()); return l_true; }
|
||||
else if (m_constraints.should_gc()) m_constraints.gc();
|
||||
else if (m_simplify.should_apply()) m_simplify();
|
||||
else if (m_restart.should_apply()) m_restart();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue