Skip to content

Commit

Permalink
Javadoc.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gilles committed Mar 7, 2017
1 parent bddcfd5 commit 08cbacf
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/main/java/org/apache/commons/math4/random/RngAdaptor.java
Expand Up @@ -26,7 +26,8 @@
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
Expand All @@ -49,7 +50,7 @@
* {@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}.
Expand All @@ -58,9 +59,9 @@
* </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>
*
Expand Down

0 comments on commit 08cbacf

Please sign in to comment.