3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 17:45:32 +00:00
This commit is contained in:
Jakob Rath 2021-09-09 11:00:01 +02:00
parent ec882d10da
commit 6e9e8999dc

View file

@ -33,7 +33,7 @@ namespace polysat {
return {};
// Only keep result if the degree in c2 was reduced.
// (this condition might be too strict, but we use it for now to prevent looping)
if (b.degree(v) >= r.degree(v))
if (b.degree(v) <= r.degree(v))
return {};
unsigned const lvl = std::max(c1->level(), c2->level());
signed_constraint c = cm().eq(lvl, r);