3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-16 13:58:45 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-09-27 14:54:24 -07:00
parent a1e4fc3e98
commit 7db1132c33

View file

@ -1987,9 +1987,9 @@ namespace sat {
void lookahead::propagate_binary(literal l) {
literal_vector const& lits = m_binary[l.index()];
TRACE("sat", tout << l << " => " << lits << "\n";);
unsigned sz = lits.size();
for (unsigned i = 0; !inconsistent() && i < sz; ++i) {
assign(lits[i]);
for (literal l : lits) {
if (inconsistent()) break;
assign(l);
}
}