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:
parent
5d3a5a94e8
commit
590e9b0fb1
1 changed files with 105 additions and 104 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue