mirror of
https://github.com/Z3Prover/z3
synced 2025-06-08 23:23: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;
|
val = to_cover_lo;
|
||||||
|
|
||||||
rational progress; // = 0
|
rational progress; // = 0
|
||||||
|
while (true) {
|
||||||
while (true) {
|
while (true) {
|
||||||
entry* e = nullptr;
|
entry* e = nullptr;
|
||||||
|
|
||||||
|
@ -1643,7 +1644,7 @@ namespace polysat {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// no more progress
|
// no more progress on current layer
|
||||||
if (!e)
|
if (!e)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -1744,7 +1745,7 @@ namespace polysat {
|
||||||
|
|
||||||
SASSERT(result == l_undef);
|
SASSERT(result == l_undef);
|
||||||
// TODO: continue with intervals at current level
|
// TODO: continue with intervals at current level
|
||||||
|
}
|
||||||
NOT_IMPLEMENTED_YET();
|
NOT_IMPLEMENTED_YET();
|
||||||
return l_undef;
|
return l_undef;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue