mirror of
https://github.com/Z3Prover/z3
synced 2025-05-12 02:04:43 +00:00
Merge branch 'master' of https://github.com/z3prover/z3
This commit is contained in:
commit
9e62a7834d
3 changed files with 34 additions and 5 deletions
|
@ -1328,10 +1328,11 @@ namespace smt {
|
|||
for (; i < m_eq_propagation_queue.size() && !get_cancel_flag(); i++) {
|
||||
new_eq & entry = m_eq_propagation_queue[i];
|
||||
add_eq(entry.m_lhs, entry.m_rhs, entry.m_justification);
|
||||
if (inconsistent())
|
||||
if (inconsistent()) {
|
||||
m_eq_propagation_queue.reset();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
TRACE("add_eq", tout << m_eq_propagation_queue.size() << " " << i << "\n";);
|
||||
m_eq_propagation_queue.reset();
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue