Update JavaDoc

This commit is contained in:
Théophile Charmont 2019-05-07 17:02:27 +02:00 committed by GitHub
parent e7208341df
commit 6d448c4e9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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