gpt4 book ai didi

z3 - Z3 按位计算?

转载 作者:行者123 更新时间:2023-12-02 01:48:33 25 4
gpt4 key购买 nike

我编写了以下 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 方程中进行按位算术(在本例中为 &)?

谢谢。

最佳答案

xy 应该是位向量:

x, y = BitVecs('x y', 32)
F = (x == y & 16) # x has the value of (y & 16)
print F

请参阅 http://rise4fun.com/Z3/tutorial/guide 下的位向量部分

关于z3 - Z3 按位计算?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14049877/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com