Missing @Overrides
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_X@1055914 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e83010dcd9
commit
2ab36c868f
|
@ -203,6 +203,7 @@ public class ExponentialDistributionImpl extends AbstractContinuousDistribution
|
|||
* @return domain value lower bound, i.e.
|
||||
* P(X < <i>lower bound</i>) < <code>p</code>
|
||||
*/
|
||||
@Override
|
||||
protected double getDomainLowerBound(double p) {
|
||||
return 0;
|
||||
}
|
||||
|
@ -215,6 +216,7 @@ public class ExponentialDistributionImpl extends AbstractContinuousDistribution
|
|||
* @return domain value upper bound, i.e.
|
||||
* P(X < <i>upper bound</i>) > <code>p</code>
|
||||
*/
|
||||
@Override
|
||||
protected double getDomainUpperBound(double p) {
|
||||
// NOTE: exponential is skewed to the left
|
||||
// NOTE: therefore, P(X < μ) > .5
|
||||
|
|
Loading…
Reference in New Issue