(self, e, score)
| 30 | return e.isOverflow(self.tolerance) |
| 31 | |
| 32 | def solve(self, e, score): |
| 33 | if not self.test(e): # Only try to solve if condition test fails. |
| 34 | self.addScore(e.overflow2Next(), e, score) |
| 35 | |
| 36 | # Columns |
| 37 |
nothing calls this directly
no test coverage detected