mirror of
https://github.com/Z3Prover/z3
synced 2025-04-13 12:28:44 +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:
|
||||
return x
|
||||
if k < 0:
|
||||
return "(%s >> %d)" % (x,-k)
|
||||
return "(%s << %d)" % (x, k)
|
||||
return "(%s >> %dull)" % (x,-k)
|
||||
return "(%s << %dull)" % (x, k)
|
||||
|
||||
def hash(r, hashcons):
|
||||
if r in hashcons:
|
||||
|
|
Loading…
Reference in a new issue