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

Method __radd__

lean_py/z3/core.py:423–424  ·  view source on GitHub ↗
(self, other: object)

Source from the content-addressed store, hash-verified

421 return _bool_to_int(self).__add__(_coerce_arith_any(other))
422
423 def __radd__(self, other: object) -> ArithRef:
424 return _coerce_arith_any(other).__add__(_bool_to_int(self))
425
426 def __mul__(self, other: object) -> ArithRef:
427 return _bool_to_int(self).__mul__(_coerce_arith_any(other))

Callers

nothing calls this directly

Calls 3

_coerce_arith_anyFunction · 0.85
_bool_to_intFunction · 0.85
__add__Method · 0.45

Tested by

no test coverage detected