Add numeric docs

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1062925 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2011-01-24 19:08:57 +00:00
parent 8c7b9a1495
commit 2f7074cff0
1 changed files with 4 additions and 4 deletions

View File

@ -62,13 +62,13 @@ public class FastMathStrictComparisonTest {
};
private static final Object [] LONG_SPECIAL_VALUES = {
-1,0,1,
Long.MIN_VALUE, Long.MAX_VALUE,
-1,0,1, // 1,2,3
Long.MIN_VALUE, Long.MAX_VALUE, // 4,5
};
private static final Object[] INT_SPECIAL_VALUES = {
-1,0,1,
Integer.MIN_VALUE, Integer.MAX_VALUE,
-1,0,1, // 1,2,3
Integer.MIN_VALUE, Integer.MAX_VALUE, // 4,5
};
private final Method mathMethod;