Author: sebb
Date: Thu Jan 6 15:34:34 2011
New Revision: 1055914
URL: http://svn.apache.org/viewvc?rev=1055914&view=rev
Log:
Missing @Overrides
Modified:
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/ExponentialDistributionImpl.java
Modified:
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/ExponentialDistributionImpl.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/ExponentialDistributionImpl.java?rev=1055914&r1=1055913&r2=1055914&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/ExponentialDistributionImpl.java
(original)
+++
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/ExponentialDistributionImpl.java
Thu Jan 6 15:34:34 2011
@@ -203,6 +203,7 @@ public class ExponentialDistributionImpl
* @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
* @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