Implementation details should not be "public".
This commit is contained in:
parent
4717edc26a
commit
d9979fa978
|
@ -36,12 +36,12 @@ public class PoissonDistribution extends AbstractIntegerDistribution {
|
||||||
* Default maximum number of iterations for cumulative probability calculations.
|
* Default maximum number of iterations for cumulative probability calculations.
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
*/
|
*/
|
||||||
public static final int DEFAULT_MAX_ITERATIONS = 10000000;
|
private static final int DEFAULT_MAX_ITERATIONS = 10000000;
|
||||||
/**
|
/**
|
||||||
* Default convergence criterion.
|
* Default convergence criterion.
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
*/
|
*/
|
||||||
public static final double DEFAULT_EPSILON = 1e-12;
|
private static final double DEFAULT_EPSILON = 1e-12;
|
||||||
/** Serializable version identifier. */
|
/** Serializable version identifier. */
|
||||||
private static final long serialVersionUID = -3349935121172596109L;
|
private static final long serialVersionUID = -3349935121172596109L;
|
||||||
/** Distribution used to compute normal approximation. */
|
/** Distribution used to compute normal approximation. */
|
||||||
|
|
Loading…
Reference in New Issue