mirror of
https://github.com/Z3Prover/z3
synced 2026-06-05 00:20:50 +00:00
fix condition that skipped mbqi
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
eaf7562a1d
commit
2dbe233f6a
1 changed files with 1 additions and 2 deletions
|
|
@ -512,8 +512,7 @@ namespace smt {
|
|||
for (quantifier * q : *m_qm) {
|
||||
if (!(m_qm->mbqi_enabled(q) &&
|
||||
m_context->is_relevant(q) &&
|
||||
m_context->get_assignment(q) == l_true &&
|
||||
(!m_context->get_fparams().m_ematching))) {
|
||||
m_context->get_assignment(q) == l_true)) {
|
||||
if (!m_qm->mbqi_enabled(q))
|
||||
++num_failures;
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue