Update JavaDoc
This commit is contained in:
parent
e7208341df
commit
6d448c4e9b
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue