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

Method __eq__

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

Source from the content-addressed store, hash-verified

130 return _sort_repr(self._ast_sort)
131
132 def __eq__(self, other: object) -> bool:
133 return isinstance(other, SortRef) and self._ast_sort == other._ast_sort
134
135 def __hash__(self) -> int:
136 return hash(self._ast_sort)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected