3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-12-05 03:26:45 +00:00

refine givup conditions

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-11-27 14:59:48 -08:00
parent 482fa7dadf
commit f98fd2a137

View file

@ -4161,10 +4161,9 @@ namespace smt {
break;
case FC_CONTINUE:
return FC_CONTINUE;
break;
}
if (m_final_check_idx == old_idx) {
if (level >= max_level)
if (level >= max_level || result == FC_DONE || can_propagate())
break;
++level;
}