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:
parent
71e11fc375
commit
4d035b59a1
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue