MCPcopy Create free account
hub / github.com/BasisResearch/lean.py / test_sdiv

Method test_sdiv

tests/test_z3_ported.py:2170–2174  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2168 assert r._ast.op == BinOp.ROTR
2169
2170 def test_sdiv(self):
2171 x, y = BitVecs("x y", 8)
2172 r = SDiv(x, y)
2173 assert r.size() == 8
2174 assert r._ast.op == BinOp.SDIV
2175
2176 def test_srem(self):
2177 x, y = BitVecs("x y", 8)

Callers

nothing calls this directly

Calls 3

BitVecsFunction · 0.90
SDivFunction · 0.90
sizeMethod · 0.45

Tested by

no test coverage detected