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:
parent
84390575e2
commit
c41abf2241
4 changed files with 29 additions and 32 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue