mirror of
https://github.com/apache/commons-math.git
synced 2025-02-10 03:56:19 +00:00
Javadoc.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1239671 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
eff078bf4f
commit
e40b641df3
@ -76,8 +76,9 @@ public class ISAACRandom extends BitsStreamGenerator implements Serializable {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new ISAAC random number generator.
|
* Creates a new ISAAC random number generator.
|
||||||
* <p>The instance is initialized using a combination of the
|
* <br/>
|
||||||
* current time and system hash code of the instance as the seed.</p>
|
* The instance is initialized using a combination of the
|
||||||
|
* current time and system hash code of the instance as the seed.
|
||||||
*/
|
*/
|
||||||
public ISAACRandom() {
|
public ISAACRandom() {
|
||||||
allocArrays();
|
allocArrays();
|
||||||
@ -87,7 +88,7 @@ public class ISAACRandom extends BitsStreamGenerator implements Serializable {
|
|||||||
/**
|
/**
|
||||||
* Creates a new ISAAC random number generator using a single long seed.
|
* Creates a new ISAAC random number generator using a single long seed.
|
||||||
*
|
*
|
||||||
* @param seed the initial seed (64 bits integer)
|
* @param seed Initial seed.
|
||||||
*/
|
*/
|
||||||
public ISAACRandom(long seed) {
|
public ISAACRandom(long seed) {
|
||||||
allocArrays();
|
allocArrays();
|
||||||
@ -97,8 +98,8 @@ public class ISAACRandom extends BitsStreamGenerator implements Serializable {
|
|||||||
/**
|
/**
|
||||||
* Creates a new ISAAC random number generator using an int array seed.
|
* Creates a new ISAAC random number generator using an int array seed.
|
||||||
*
|
*
|
||||||
* @param seed the initial seed (32 bits integers array), if null the
|
* @param seed Initial seed. If {@code null}, the seed will be related
|
||||||
* seed of the generator will be related to the current time
|
* to the current time.
|
||||||
*/
|
*/
|
||||||
public ISAACRandom(int[] seed) {
|
public ISAACRandom(int[] seed) {
|
||||||
allocArrays();
|
allocArrays();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user