(self, name: str, args: list[Point])
| 2456 | return add |
| 2457 | |
| 2458 | def in_cache(self, name: str, args: list[Point]) -> bool: |
| 2459 | return problem.hashed(name, args) in self.cache |
| 2460 | |
| 2461 | def cache_dep( |
| 2462 | self, name: str, args: list[Point], premises: list[Dependency] |