In class Beta, wrote DEFAULT_EPSILON in a less error-prone way (1E-14 instead

of 10e-15).


git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1413555 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastien Brisard 2012-11-26 11:22:02 +00:00
parent 71e11fc375
commit 4d035b59a1
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ import org.apache.commons.math3.util.FastMath;
*/
public class Beta {
/** Maximum allowed numerical error. */
private static final double DEFAULT_EPSILON = 10e-15;
private static final double DEFAULT_EPSILON = 1E-14;
/**
* <p>