mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
ull
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
e016979ff6
commit
8860de39bb
|
@ -856,8 +856,8 @@ def shift(x, k):
|
||||||
if k == 0:
|
if k == 0:
|
||||||
return x
|
return x
|
||||||
if k < 0:
|
if k < 0:
|
||||||
return "(%s >> %d)" % (x,-k)
|
return "(%s >> %dull)" % (x,-k)
|
||||||
return "(%s << %d)" % (x, k)
|
return "(%s << %dull)" % (x, k)
|
||||||
|
|
||||||
def hash(r, hashcons):
|
def hash(r, hashcons):
|
||||||
if r in hashcons:
|
if r in hashcons:
|
||||||
|
|
Loading…
Reference in a new issue