(self, __context: Any)
| 324 | return None |
| 325 | |
| 326 | def model_post_init(self, __context: Any) -> None: |
| 327 | # Precompute hash once since the model is frozen/immutable. |
| 328 | object.__setattr__(self, "_hash_cache", self._compute_hash()) |
| 329 | |
| 330 | def _compute_hash(self) -> str: |
| 331 | """Compute a deterministic hash of the solution content.""" |
nothing calls this directly
no test coverage detected