3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 01:24:08 +00:00
This commit is contained in:
Nikolaj Bjorner 2020-12-07 10:27:00 -08:00
parent 6c9bdc949e
commit 982da8db05

View file

@ -170,8 +170,7 @@ namespace sat {
unsigned sz = s.get_wlist(~l).size();
for (unsigned i = 0; i < sz; ++i) {
watch_list& wlist = s.get_wlist(~l);
watched & w = wlist[i];
sz = wlist.size();
watched & w = wlist[i];
if (!w.is_binary_clause())
continue;
literal l2 = w.get_literal();
@ -185,6 +184,7 @@ namespace sat {
return;
if (s.inconsistent())
return;
sz = wlist.size();
}
}
}