理想情况下,可以“或”表示为位向量的两个数字,但我做不到。请告诉代码中是否有错误或其他问题
line1 = BitVec('line1', 1)
line2 = BitVec('line2', 1)
s = Solver()
s.add(Or(line1, line2) == 0)
print s.check()
给出的错误是
error: 'type error'
WARNING: invalid function application for or, sort mismatch on argument at position 1, expected Bool but given (_ BitVec 1)
WARNING: (declare-fun or (Bool Bool) Bool) applied to:
line1 of sort (_ BitVec 1)
line2 of sort (_ BitVec 1)
从这个错误中,我了解到 Or 只能用于 bool 变量。我的问题是如何或为 BitVectors