Constants might as well be static
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1003576 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
08c4e822e5
commit
0b1d8afb21
|
@ -28,8 +28,9 @@ import org.junit.Test;
|
|||
|
||||
public class FastMathTest {
|
||||
|
||||
private final double MAX_ERROR_ULP = 0.51;
|
||||
private final int NUMBER_OF_TRIALS = 1000;
|
||||
private static final double MAX_ERROR_ULP = 0.51;
|
||||
private static final int NUMBER_OF_TRIALS = 1000;
|
||||
|
||||
private DfpField field;
|
||||
private RandomGenerator generator;
|
||||
|
||||
|
|
Loading…
Reference in New Issue