Skip to content

Commit 4843f90

Browse files
committed
Remove unused/wrong operator
1 parent e0e6584 commit 4843f90

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

manticore/core/smtlib/operators.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -237,14 +237,6 @@ def SDIV(a, b):
237237
return int(math.trunc(float(a) / float(b)))
238238

239239

240-
def SMOD(a, b):
241-
if isinstance(a, BitVec):
242-
return a.smod(b)
243-
elif isinstance(b, BitVec):
244-
return b.rsmod(a)
245-
return int(math.fmod(a, b))
246-
247-
248240
def SREM(a, b):
249241
if isinstance(a, BitVec):
250242
return a.srem(b)

0 commit comments

Comments
 (0)