git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1239671 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2012-02-02 15:31:48 +00:00
parent eff078bf4f
commit e40b641df3

View File

@ -76,8 +76,9 @@ public class ISAACRandom extends BitsStreamGenerator implements Serializable {
/**
* Creates a new ISAAC random number generator.
* <p>The instance is initialized using a combination of the
* current time and system hash code of the instance as the seed.</p>
* <br/>
* The instance is initialized using a combination of the
* current time and system hash code of the instance as the seed.
*/
public ISAACRandom() {
allocArrays();
@ -87,7 +88,7 @@ public class ISAACRandom extends BitsStreamGenerator implements Serializable {
/**
* 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) {
allocArrays();
@ -97,8 +98,8 @@ public class ISAACRandom extends BitsStreamGenerator implements Serializable {
/**
* Creates a new ISAAC random number generator using an int array seed.
*
* @param seed the initial seed (32 bits integers array), if null the
* seed of the generator will be related to the current time
* @param seed Initial seed. If {@code null}, the seed will be related
* to the current time.
*/
public ISAACRandom(int[] seed) {
allocArrays();