mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 17:45:32 +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 {};
|
||||
// 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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue