Make private constant final
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@902928 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
517f665a54
commit
4487658a3a
|
@ -45,7 +45,7 @@ import org.apache.commons.math.util.MathUtils;
|
|||
final class SaddlePointExpansion {
|
||||
|
||||
/** 1/2 * log(2 π). */
|
||||
private static double HALF_LOG_2_PI = 0.5 * Math.log(MathUtils.TWO_PI);
|
||||
private static final double HALF_LOG_2_PI = 0.5 * Math.log(MathUtils.TWO_PI);
|
||||
|
||||
/** exact Stirling expansion error for certain values. */
|
||||
private static final double[] EXACT_STIRLING_ERRORS = { 0.0, /* 0.0 */
|
||||
|
|
Loading…
Reference in New Issue