mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
missing switch cases
This commit is contained in:
parent
5393f1d98f
commit
ec57d3b15c
3 changed files with 15 additions and 3 deletions
|
@ -669,8 +669,11 @@ namespace q {
|
|||
if (m_inst_queue.lazy_propagate())
|
||||
return true;
|
||||
for (unsigned i = 0; i < m_clauses.size(); ++i)
|
||||
if (m_clauses[i]->m_bindings)
|
||||
if (m_clauses[i]->m_bindings) {
|
||||
IF_VERBOSE(0, verbose_stream() << "missed propagation " << i << "\n");
|
||||
TRACE("q", display(tout));
|
||||
break;
|
||||
}
|
||||
|
||||
TRACE("q", tout << "no more propagation\n";);
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue