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:
parent
335040a4ff
commit
b7f14c5875
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue