3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 12:28:44 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-02-18 18:08:11 -08:00
parent e016979ff6
commit 8860de39bb

View file

@ -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: