Skip to content

Commit

Permalink
fix #7510
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Jan 15, 2025
1 parent a84130e commit 5365952
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/smt/smt_model_checker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,8 @@ namespace smt {
m_context->is_relevant(q) &&
m_context->get_assignment(q) == l_true &&
(!m_context->get_fparams().m_ematching || !m.is_lambda_def(q)))) {
if (!m_qm->mbqi_enabled(q))
++num_failures;
continue;
}

Expand All @@ -528,7 +530,7 @@ namespace smt {
tout << m_context->get_assignment(q) << "\n";);

if (m_params.m_mbqi_trace && q->get_qid() != symbol::null) {
verbose_stream() << "(smt.mbqi :checking " << q->get_qid() << ")\n";
IF_VERBOSE(1, verbose_stream() << "(smt.mbqi :checking " << q->get_qid() << ")\n");
}
found_relevant = true;
if (!check(q)) {
Expand Down

0 comments on commit 5365952

Please sign in to comment.