mirror of
https://github.com/Z3Prover/z3
synced 2025-06-27 08:28:44 +00:00
n/a
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a1e4fc3e98
commit
7db1132c33
1 changed files with 3 additions and 3 deletions
|
@ -1987,9 +1987,9 @@ namespace sat {
|
||||||
void lookahead::propagate_binary(literal l) {
|
void lookahead::propagate_binary(literal l) {
|
||||||
literal_vector const& lits = m_binary[l.index()];
|
literal_vector const& lits = m_binary[l.index()];
|
||||||
TRACE("sat", tout << l << " => " << lits << "\n";);
|
TRACE("sat", tout << l << " => " << lits << "\n";);
|
||||||
unsigned sz = lits.size();
|
for (literal l : lits) {
|
||||||
for (unsigned i = 0; !inconsistent() && i < sz; ++i) {
|
if (inconsistent()) break;
|
||||||
assign(lits[i]);
|
assign(l);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue