From 2ab36c868f7acacabb4dc59f38abb1eaebabb864 Mon Sep 17 00:00:00 2001 From: Sebastian Bazley Date: Thu, 6 Jan 2011 15:34:34 +0000 Subject: [PATCH] Missing @Overrides git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_X@1055914 13f79535-47bb-0310-9956-ffa450edef68 --- .../commons/math/distribution/ExponentialDistributionImpl.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/org/apache/commons/math/distribution/ExponentialDistributionImpl.java b/src/main/java/org/apache/commons/math/distribution/ExponentialDistributionImpl.java index f7a3e2920..6aeb26095 100644 --- a/src/main/java/org/apache/commons/math/distribution/ExponentialDistributionImpl.java +++ b/src/main/java/org/apache/commons/math/distribution/ExponentialDistributionImpl.java @@ -203,6 +203,7 @@ public class ExponentialDistributionImpl extends AbstractContinuousDistribution * @return domain value lower bound, i.e. * P(X < lower bound) < p */ + @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 < upper bound) > p */ + @Override protected double getDomainUpperBound(double p) { // NOTE: exponential is skewed to the left // NOTE: therefore, P(X < μ) > .5