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 2017/03/07 13:45:48 UTC

[math] Javadoc.

Repository: commons-math
Updated Branches:
  refs/heads/master bddcfd5a5 -> 08cbacf7e


Javadoc.


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

Branch: refs/heads/master
Commit: 08cbacf7e413bd0b2e015495b673da88c7474b1b
Parents: bddcfd5
Author: Gilles <er...@apache.org>
Authored: Tue Mar 7 14:45:15 2017 +0100
Committer: Gilles <er...@apache.org>
Committed: Tue Mar 7 14:45:15 2017 +0100

----------------------------------------------------------------------
 .../java/org/apache/commons/math4/random/RngAdaptor.java | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/08cbacf7/src/main/java/org/apache/commons/math4/random/RngAdaptor.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/math4/random/RngAdaptor.java b/src/main/java/org/apache/commons/math4/random/RngAdaptor.java
index c4613a4..2852d58 100644
--- a/src/main/java/org/apache/commons/math4/random/RngAdaptor.java
+++ b/src/main/java/org/apache/commons/math4/random/RngAdaptor.java
@@ -26,7 +26,8 @@ import org.apache.commons.rng.simple.RandomSource;
 import org.apache.commons.rng.core.RandomProviderDefaultState;
 
 /**
- * Adaptor that delegates to a {@link UniformRandomProvider} instance.
+ * Adaptor that delegates to a
+ * {@link org.apache.commons.rng.UniformRandomProvider} instance.
  * <p>
  * It is provided for users who wish to test the new RNG implementations
  * the <i>current</i> generators (up to version 3.6 of Commons Math) in
@@ -49,7 +50,7 @@ import org.apache.commons.rng.core.RandomProviderDefaultState;
  *   {@link RandomGenerator#setSeed(int[]) setSeed(int[])} and
  *   {@link RandomGenerator#setSeed(long) setSeed(long)}
  *   methods of the {@link RandomGenerator} are not part of the
- *   {@link UniformRandomProvider new API}.
+ *   {@link org.apache.commons.rng.UniformRandomProvider new API}.
  *  </li>
  *  <li>
  *   The new RNG implementations are not {@code Serializable}.
@@ -58,9 +59,9 @@ import org.apache.commons.rng.core.RandomProviderDefaultState;
  *  </li>
  *  <li>
  *   {@link RandomGenerator#nextGaussian() nextGaussian()} is not
- *   part of the {@link UniformRandomProvider new API} as it defines
- *   a "post-processing" of the output of a <i>uniform</i> RNG in
- *   order to follow a different distribution.
+ *   part of the {@link org.apache.commons.rng.UniformRandomProvider
+ *   new API} as it defines a "post-processing" of the output of a
+ *   <i>uniform</i> RNG in order to follow a different distribution.
  *  </li>
  * </p>
  *