3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-03-22 20:39:11 +00:00

Add cha_abort_on_fail parameter to control failure counter decrement

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Lev Nachmanson 2026-03-13 07:59:09 -10:00
parent 7c9f930ef1
commit b11e5a4f34
2 changed files with 2 additions and 1 deletions

View file

@ -1336,7 +1336,7 @@ lbool core::check(unsigned level) {
ret = m_nra.check_assignment();
if (ret != l_true)
++m_check_assignment_fail_cnt;
else
else if (!params().arith_nl_cha_abort_on_fail())
--m_check_assignment_fail_cnt;
}