(self)
| 141 | return self |
| 142 | |
| 143 | def run(self) -> Result: |
| 144 | while self.has_next(): |
| 145 | self.next() |
| 146 | return self.result() |
| 147 | |
| 148 | def has_next(self) -> bool: |
| 149 | assert self.termination is not None, "Algorithm has no termination" |
no test coverage detected