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/05/07 21:15:40 UTC

[commons-math] 02/04: Update 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

commit 6d448c4e9bd4c10cfbbc2ab44ce49d8305f655fb
Author: Théophile Charmont <th...@ensimag.grenoble-inp.fr>
AuthorDate: Tue May 7 17:02:27 2019 +0200

    Update JavaDoc
---
 .../java/org/apache/commons/math4/random/SobolSequenceGenerator.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/math4/random/SobolSequenceGenerator.java b/src/main/java/org/apache/commons/math4/random/SobolSequenceGenerator.java
index 0f6c748..8c7221d 100644
--- a/src/main/java/org/apache/commons/math4/random/SobolSequenceGenerator.java
+++ b/src/main/java/org/apache/commons/math4/random/SobolSequenceGenerator.java
@@ -39,7 +39,7 @@ import org.apache.commons.math4.util.FastMath;
  * its subsequence (x1, ... xN) has a low discrepancy. It can be used to generate pseudo-random
  * points in a space S, which are equi-distributed.
  * <p>
- * The implementation already comes with support for up to 1000 dimensions with direction numbers
+ * The implementation already comes with support for up to 21201 dimensions with direction numbers
  * calculated from <a href="http://web.maths.unsw.edu.au/~fkuo/sobol/">Stephen Joe and Frances Kuo</a>.
  * <p>
  * The generator supports two modes:
@@ -86,7 +86,7 @@ public class SobolSequenceGenerator implements RandomVectorGenerator {
      * Construct a new Sobol sequence generator for the given space dimension.
      *
      * @param dimension the space dimension
-     * @throws OutOfRangeException if the space dimension is outside the allowed range of [1, 1000]
+     * @throws OutOfRangeException if the space dimension is outside the allowed range of [1, 21201]
      */
     public SobolSequenceGenerator(final int dimension) throws OutOfRangeException {
         if (dimension < 1 || dimension > MAX_DIMENSION) {