mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 00:55:31 +00:00
for now, do saturation only for matching bit-widths
This commit is contained in:
parent
b51c634294
commit
a369c1b810
1 changed files with 2 additions and 0 deletions
|
@ -71,6 +71,8 @@ namespace polysat {
|
|||
|
||||
bool saturation::try_inequality(pvar v, inequality const& i, conflict& core) {
|
||||
bool prop = false;
|
||||
if (s.size(v) != i.lhs().power_of_2())
|
||||
return false;
|
||||
if (try_mul_bounds(v, core, i))
|
||||
prop = true;
|
||||
if (try_parity(v, core, i))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue