You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If value range is very small decimal numbers but the relative difference is huge, such as [1E-308, 1E-79], the int binCount = (int) ((axis.getMaxAxis() - axis.getMinAxis()) / binSize) + 2; will return negative value, and then while (binCount < minimumBinCount) will begin a dead loop.
The text was updated successfully, but these errors were encountered:
If value range is very small decimal numbers but the relative difference is huge, such as [1E-308, 1E-79], the
int binCount = (int) ((axis.getMaxAxis() - axis.getMinAxis()) / binSize) + 2;
will return negative value, and thenwhile (binCount < minimumBinCount)
will begin a dead loop.The text was updated successfully, but these errors were encountered: