mirror of
https://github.com/apache/commons-math.git
synced 2025-02-09 11:35:33 +00:00
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.
|
* @return domain value lower bound, i.e.
|
||||||
* P(X < <i>lower bound</i>) < <code>p</code>
|
* P(X < <i>lower bound</i>) < <code>p</code>
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
protected double getDomainLowerBound(double p) {
|
protected double getDomainLowerBound(double p) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -215,6 +216,7 @@ public class ExponentialDistributionImpl extends AbstractContinuousDistribution
|
|||||||
* @return domain value upper bound, i.e.
|
* @return domain value upper bound, i.e.
|
||||||
* P(X < <i>upper bound</i>) > <code>p</code>
|
* P(X < <i>upper bound</i>) > <code>p</code>
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
protected double getDomainUpperBound(double p) {
|
protected double getDomainUpperBound(double p) {
|
||||||
// NOTE: exponential is skewed to the left
|
// NOTE: exponential is skewed to the left
|
||||||
// NOTE: therefore, P(X < μ) > .5
|
// NOTE: therefore, P(X < μ) > .5
|
||||||
|
Loading…
x
Reference in New Issue
Block a user