From 6d448c4e9bd4c10cfbbc2ab44ce49d8305f655fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Charmont?= Date: Tue, 7 May 2019 17:02:27 +0200 Subject: [PATCH] Update JavaDoc --- .../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 0f6c7482e..8c7221d8f 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. *

- * 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 Stephen Joe and Frances Kuo. *

* 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) {