subclass must implement
(self)
| 105 | |
| 106 | @abstractmethod |
| 107 | def generate(self) -> None: |
| 108 | """ |
| 109 | subclass must implement |
| 110 | """ |
| 111 | |
| 112 | def collect_partial_solution(self, node: Type[BaseNode]) -> str: |
| 113 | # from leaf to root, and reverse |
nothing calls this directly
no outgoing calls
no test coverage detected