3
0
Fork 0
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:
Jakob Rath 2023-07-24 10:26:38 +02:00
parent b51c634294
commit a369c1b810

View file

@ -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))