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

Method __gt__

lean_py/z3/core.py:736–741  ·  view source on GitHub ↗
(self, other: BitVecRef | int)

Source from the content-addressed store, hash-verified

734 )
735
736 def __gt__(self, other: BitVecRef | int) -> BoolRef:
737 other = _coerce_bv(other, self._sort)
738 return BoolRef(
739 BinOpNode(BinOp.SGT, self._ast, other._ast),
740 _merge(self._vars, other._vars),
741 )
742
743 def __ge__(self, other: BitVecRef | int) -> BoolRef:
744 other = _coerce_bv(other, self._sort)

Callers

nothing calls this directly

Calls 4

BinOpNodeClass · 0.90
_coerce_bvFunction · 0.85
BoolRefClass · 0.85
_mergeFunction · 0.85

Tested by

no test coverage detected