(self)
| 212 | ) |
| 213 | |
| 214 | def summary(self) -> str: |
| 215 | total = self._cumulative_input + self._cumulative_output |
| 216 | return f"turns={self.turns}, input={self._cumulative_input}, output={self._cumulative_output}, total={total}" |
| 217 | |
| 218 | |
| 219 | # ====================================================================== |