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:
parent
b9109f031e
commit
e09964096e
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue