revise function names

pull/788/head
Joran Honig 6 years ago
parent 41de34284e
commit c5df4d19a8
  1. 8
      mythril/laser/smt/bitvec.py

@ -24,19 +24,19 @@ class BitVec(Expression):
return BitVec(self.raw / other.raw, annotations=union)
def UREM(a: BitVec, b: BitVec) -> BitVec:
def URem(a: BitVec, b: BitVec) -> BitVec:
union = a.annotations + b.annotations
return BitVec(z3.URem(a.raw, b.raw), annotations=union)
def SREM(a: BitVec, b: BitVec) -> BitVec:
def SRem(a: BitVec, b: BitVec) -> BitVec:
union = a.annotations + b.annotations
return BitVec(z3.SRem(a.raw, b.raw), annotations=union)
def UDIV(a: BitVec, b: BitVec) -> BitVec:
def UDiv(a: BitVec, b: BitVec) -> BitVec:
union = a.annotations + b.annotations
return BitVec(z3.UDIV(a.raw, b.raw), annotations=union)
return BitVec(z3.UDiv(a.raw, b.raw), annotations=union)
def BitVecVal(value, size, annotations=None):

Loading…
Cancel
Save