mirror of
https://github.com/Z3Prover/z3
synced 2025-07-03 11:25:40 +00:00
fix
This commit is contained in:
parent
ec882d10da
commit
6e9e8999dc
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ namespace polysat {
|
||||||
return {};
|
return {};
|
||||||
// Only keep result if the degree in c2 was reduced.
|
// 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)
|
// (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 {};
|
return {};
|
||||||
unsigned const lvl = std::max(c1->level(), c2->level());
|
unsigned const lvl = std::max(c1->level(), c2->level());
|
||||||
signed_constraint c = cm().eq(lvl, r);
|
signed_constraint c = cm().eq(lvl, r);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue