(self, e, score)
| 39 | return e.isOverflow(self.tolerance) |
| 40 | |
| 41 | def solve(self, e, score): |
| 42 | if not self.test(e): # Only try to solve if condition test fails. |
| 43 | self.addScore(e.overflow2Next(), e, score) |
| 44 | |
| 45 | class EqualizeFlow2Height(Condition): |
| 46 | """Test if all elements in the flow have the same height and/or same |
nothing calls this directly
no test coverage detected