3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-05-06 10:25:17 +00:00

add continue as an option to breaking loop at level

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2026-05-01 16:15:36 -07:00
parent b9109f031e
commit e09964096e

View file

@ -4172,7 +4172,7 @@ namespace smt {
return FC_CONTINUE;
}
if (m_final_check_idx == old_idx) {
if (level >= max_level || result == FC_DONE || can_propagate())
if (level >= max_level || result == FC_DONE || result == FC_CONTINUE || can_propagate())
break;
++level;
// Re-evaluate at the higher level: clear the give-up state