Answers if this element needs overflow to be solved. This method is typically called by conditions such as Overflow2Next.
(self, tolerance)
| 120 | return overflow |
| 121 | |
| 122 | def isOverflow(self, tolerance): |
| 123 | """Answers if this element needs overflow to be solved. This method is |
| 124 | typically called by conditions such as Overflow2Next.""" |
| 125 | return self.nextElement is None or not self.getOverflow() |
| 126 | |
| 127 | def overflow2Next(self): |
| 128 | """Try to fix if there is overflow.""" |
nothing calls this directly
no test coverage detected