(self)
| 133 | return isinstance(other, SortRef) and self._ast_sort == other._ast_sort |
| 134 | |
| 135 | def __hash__(self) -> int: |
| 136 | return hash(self._ast_sort) |
| 137 | |
| 138 | def name(self) -> str: |
| 139 | """Return sort name as string (z3py compat).""" |
nothing calls this directly
no outgoing calls
no test coverage detected