mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
ull
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
e016979ff6
commit
8860de39bb
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue