3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 18:31:49 +00:00

update test

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-05-16 23:48:46 +03:00
parent 335040a4ff
commit b7f14c5875

View file

@ -3704,7 +3704,7 @@ def BV2Int(a, is_signed=False):
>>> x > BV2Int(b, is_signed=True)
x > If(b < 0, BV2Int(b) - 8, BV2Int(b))
>>> solve(x > BV2Int(b), b == 1, x < 3)
[b = 1, x = 2]
[x = 2, b = 1]
"""
if z3_debug():
_z3_assert(is_bv(a), "Z3 bit-vector expression expected")