Returns the calculated minimum value.
()
| 157 | |
| 158 | /** Returns the calculated minimum value. */ |
| 159 | public double getMin() { |
| 160 | if (!minAndMaxCalculated) |
| 161 | findMinAndMax(); |
| 162 | return min; |
| 163 | } |
| 164 | |
| 165 | /** Returns the calculated maximum value. */ |
| 166 | public double getMax() { |
no test coverage detected