Closed elazarg closed 5 years ago
x & K can at least be inferred to be <= K. This is not the case currently.
x & K
<= K
I'm assuming you mean that y = x & k implies that y <= k
y = x & k
y <= k
E.g., given x = 10, k = -3 and bitwdith=4 we get y = 1010 & 1101 = 1000
x = 10
k = -3
y = 1010 & 1101 = 1000
which in decimal, y = 8. Thus, we cannot infer here that y <= -3
y = 8
y <= -3
x & K
can at least be inferred to be<= K
. This is not the case currently.