3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-08-13 08:36:16 -07:00
parent 84390575e2
commit c41abf2241
4 changed files with 29 additions and 32 deletions

View file

@ -318,7 +318,7 @@ namespace dd {
goto go_down;
}
else {
while (current_cost() != best_cost) {
while (current_cost() > best_cost) {
sift_up(--lvl);
}
return;
@ -339,7 +339,7 @@ namespace dd {
goto go_up;
}
else {
while (current_cost() != best_cost) {
while (current_cost() > best_cost) {
sift_up(lvl++);
}
return;