You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2015/05/01 12:28:25 UTC

[math] Remove tags added by accident.

Repository: commons-math
Updated Branches:
  refs/heads/MATH_3_X f5d028ca6 -> ab2b01168


Remove tags added by accident.


Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/ab2b0116
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/ab2b0116
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/ab2b0116

Branch: refs/heads/MATH_3_X
Commit: ab2b01168c7dfa20ef05e4772fd453ebab1c47f5
Parents: f5d028c
Author: Thomas Neidhart <th...@gmail.com>
Authored: Fri May 1 12:28:05 2015 +0200
Committer: Thomas Neidhart <th...@gmail.com>
Committed: Fri May 1 12:28:05 2015 +0200

----------------------------------------------------------------------
 .../apache/commons/math3/distribution/BetaDistribution.java | 9 ---------
 1 file changed, 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/ab2b0116/src/main/java/org/apache/commons/math3/distribution/BetaDistribution.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/math3/distribution/BetaDistribution.java b/src/main/java/org/apache/commons/math3/distribution/BetaDistribution.java
index 19b19e0..944cf3d 100644
--- a/src/main/java/org/apache/commons/math3/distribution/BetaDistribution.java
+++ b/src/main/java/org/apache/commons/math3/distribution/BetaDistribution.java
@@ -149,7 +149,6 @@ public class BetaDistribution extends AbstractRealDistribution {
     }
 
     /** {@inheritDoc} */
-    @Override
     public double density(double x) {
         final double logDensity = logDensity(x);
         return logDensity == Double.NEGATIVE_INFINITY ? 0 : FastMath.exp(logDensity);
@@ -179,7 +178,6 @@ public class BetaDistribution extends AbstractRealDistribution {
     }
 
     /** {@inheritDoc} */
-    @Override
     public double cumulativeProbability(double x)  {
         if (x <= 0) {
             return 0;
@@ -208,7 +206,6 @@ public class BetaDistribution extends AbstractRealDistribution {
      * For first shape parameter {@code alpha} and second shape parameter
      * {@code beta}, the mean is {@code alpha / (alpha + beta)}.
      */
-    @Override
     public double getNumericalMean() {
         final double a = getAlpha();
         return a / (a + getBeta());
@@ -221,7 +218,6 @@ public class BetaDistribution extends AbstractRealDistribution {
      * {@code beta}, the variance is
      * {@code (alpha * beta) / [(alpha + beta)^2 * (alpha + beta + 1)]}.
      */
-    @Override
     public double getNumericalVariance() {
         final double a = getAlpha();
         final double b = getBeta();
@@ -236,7 +232,6 @@ public class BetaDistribution extends AbstractRealDistribution {
      *
      * @return lower bound of the support (always 0)
      */
-    @Override
     public double getSupportLowerBound() {
         return 0;
     }
@@ -248,19 +243,16 @@ public class BetaDistribution extends AbstractRealDistribution {
      *
      * @return upper bound of the support (always 1)
      */
-    @Override
     public double getSupportUpperBound() {
         return 1;
     }
 
     /** {@inheritDoc} */
-    @Override
     public boolean isSupportLowerBoundInclusive() {
         return false;
     }
 
     /** {@inheritDoc} */
-    @Override
     public boolean isSupportUpperBoundInclusive() {
         return false;
     }
@@ -272,7 +264,6 @@ public class BetaDistribution extends AbstractRealDistribution {
      *
      * @return {@code true}
      */
-    @Override
     public boolean isSupportConnected() {
         return true;
     }