(self, other: object)
| 366 | return hash(self._hash_cache) |
| 367 | |
| 368 | def __eq__(self, other: object) -> bool: # pragma: no cover - trivial wrapper |
| 369 | if not isinstance(other, Solution): |
| 370 | return NotImplemented |
| 371 | return self._hash_cache == other._hash_cache |
nothing calls this directly
no outgoing calls
no test coverage detected