(cls, data: list[Problem])
| 180 | |
| 181 | @classmethod |
| 182 | def to_dict(cls, data: list[Problem]) -> dict[str, Problem]: |
| 183 | return {p.url: p for p in data} |
| 184 | |
| 185 | def __init__(self, url: str, clauses: list[Clause], goal: Construction): |
| 186 | self.url = url |
no outgoing calls
no test coverage detected