| 746 | } |
| 747 | |
| 748 | double StatisticsWindow::getUpperBound(double maxValue) |
| 749 | { |
| 750 | if (_plotScale == PlotScale_Linear) { |
| 751 | return maxValue * 1.5; |
| 752 | } |
| 753 | if (_plotScale == PlotScale_Logarithmic) { |
| 754 | if (maxValue > 10) { |
| 755 | return maxValue * pow(maxValue, 0.5); |
| 756 | } |
| 757 | return maxValue * 1.5; |
| 758 | } |
| 759 | THROW_NOT_IMPLEMENTED(); |
| 760 | } |
| 761 | |
| 762 | namespace |
| 763 | { |
nothing calls this directly
no outgoing calls
no test coverage detected