You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2019/12/03 14:18:15 UTC

[commons-math] branch master updated: Javadoc.

This is an automated email from the ASF dual-hosted git repository.

erans pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-math.git


The following commit(s) were added to refs/heads/master by this push:
     new b6a65a7  Javadoc.
b6a65a7 is described below

commit b6a65a7b6e80ba4ef602b5ed2579a063d28f2249
Author: Gilles Sadowski <gi...@harfang.homelinux.org>
AuthorDate: Tue Dec 3 15:17:44 2019 +0100

    Javadoc.
---
 .../apache/commons/math4/stat/inference/KolmogorovSmirnovTest.java | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTest.java b/src/main/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTest.java
index 026a94e..18dbf8c 100644
--- a/src/main/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTest.java
+++ b/src/main/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTest.java
@@ -401,7 +401,7 @@ public class KolmogorovSmirnovTest {
      * Calculates \(P(D_n &lt; d)\) using the method described in [1] with quick decisions for extreme
      * values given in [2] (see above). The result is not exact as with
      * {@link #cdfExact(double, int)} because calculations are based on
-     * {@code double} rather than {@link org.apache.commons.math4.fraction.BigFraction}.
+     * {@code double} rather than {@link BigFraction}.
      *
      * @param d statistic
      * @param n sample size
@@ -439,7 +439,7 @@ public class KolmogorovSmirnovTest {
      * @param d statistic
      * @param n sample size
      * @param exact whether the probability should be calculated exact using
-     *        {@link org.apache.commons.math4.fraction.BigFraction} everywhere at the expense of
+     *        {@link BigFraction} everywhere at the expense of
      *        very slow execution time, or if {@code double} should be used convenient places to
      *        gain speed. Almost never choose {@code true} in real applications unless you are very
      *        sure; {@code true} is almost solely for verification purposes.
@@ -478,8 +478,7 @@ public class KolmogorovSmirnovTest {
 
     /**
      * Calculates the exact value of {@code P(D_n < d)} using the method described in [1] (reference
-     * in class javadoc above) and {@link org.apache.commons.math4.fraction.BigFraction} (see
-     * above).
+     * in class javadoc above) and {@link BigFraction} (see above).
      *
      * @param d statistic
      * @param n sample size