(self)
| 362 | return self._hash_cache |
| 363 | |
| 364 | def __hash__(self) -> int: # pragma: no cover - trivial wrapper |
| 365 | # Use the memoized content hash for fast hashing in dict/set keys. |
| 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): |
nothing calls this directly
no outgoing calls
no test coverage detected