我编写了以下 Z3 python 代码
x, y = Ints('x y')
F = (x == y & 16) # x has the value of (y & 16)
print F
但我得到以下错误:
TypeError: unsupported operand type(s) for &: 'instance' and 'int'
如何在 Z3 方程中进行按位算术(在本例中为 &)?
谢谢。
我编写了以下 Z3 python 代码
x, y = Ints('x y')
F = (x == y & 16) # x has the value of (y & 16)
print F
但我得到以下错误:
TypeError: unsupported operand type(s) for &: 'instance' and 'int'
如何在 Z3 方程中进行按位算术(在本例中为 &)?
谢谢。