3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-06 14:13:23 +00:00

outer loop, to continue search after recursive call

This commit is contained in:
Jakob Rath 2023-11-29 13:32:20 +01:00
parent 5d3a5a94e8
commit 590e9b0fb1

View file

@ -1618,6 +1618,7 @@ namespace polysat {
val = to_cover_lo;
rational progress; // = 0
while (true) {
while (true) {
entry* e = nullptr;
@ -1643,7 +1644,7 @@ namespace polysat {
}
}
// no more progress
// no more progress on current layer
if (!e)
break;
@ -1744,7 +1745,7 @@ namespace polysat {
SASSERT(result == l_undef);
// TODO: continue with intervals at current level
}
NOT_IMPLEMENTED_YET();
return l_undef;
}