3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00
This commit is contained in:
Nikolaj Bjorner 2021-09-20 12:08:04 -07:00
parent 0170f1f461
commit 1352aa06f3

View file

@ -479,16 +479,17 @@ namespace euf {
if (s().inconsistent())
return sat::check_result::CR_CONTINUE;
}
if (m_qsolver)
apply_solver(m_qsolver);
if (s().inconsistent())
if (s().inconsistent())
return sat::check_result::CR_CONTINUE;
if (cont)
return sat::check_result::CR_CONTINUE;
if (m_qsolver)
apply_solver(m_qsolver);
if (num_nodes < m_egraph.num_nodes()) {
IF_VERBOSE(1, verbose_stream() << "new nodes created, but not detected\n");
return sat::check_result::CR_CONTINUE;
return sat::check_result::CR_CONTINUE;
}
TRACE("after_search", s().display(tout););
if (give_up)