mirror of
https://github.com/Z3Prover/z3
synced 2025-06-27 00:18:45 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
959f150e4a
commit
23963f274d
1 changed files with 5 additions and 10 deletions
|
@ -532,18 +532,13 @@ namespace polysat {
|
||||||
case l_true:
|
case l_true:
|
||||||
return;
|
return;
|
||||||
case l_false:
|
case l_false:
|
||||||
continue;
|
break;
|
||||||
default:
|
case l_undef:
|
||||||
|
num_choices++;
|
||||||
if (lit2cnstr(lit).is_currently_false(*this)) {
|
if (!lit2cnstr(lit).is_currently_false(*this))
|
||||||
num_choices++;
|
choice = lit;
|
||||||
continue;
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
num_choices++;
|
|
||||||
if (choice == sat::null_literal)
|
|
||||||
choice = lit;
|
|
||||||
}
|
}
|
||||||
LOG_V("num_choices: " << num_choices);
|
LOG_V("num_choices: " << num_choices);
|
||||||
if (choice == sat::null_literal) {
|
if (choice == sat::null_literal) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue