(self, name: str = "simp")
| 400 | __slots__ = ("_name",) |
| 401 | |
| 402 | def __init__(self, name: str = "simp") -> None: |
| 403 | self._name = name |
| 404 | |
| 405 | def apply(self, goal: Goal) -> ApplyResult: |
| 406 | """Apply simplification to a goal (returns goal unchanged).""" |
nothing calls this directly
no outgoing calls
no test coverage detected