public class LFSR113 extends RandomStreamBase
RandomStreamBase using a composite linear feedback
shift register (LFSR) (or Tausworthe) RNG as defined in.
This generator is the LFSR113 proposed by.
It has four 32-bit components combined by a bitwise xor.
Its period length is approximatively 2^113
. The values of V, W and Z are 235,
255 and 290 respectively (see RandomStream for their
definition). The seed of the RNG, and the state of a stream at any given
step, are four-dimensional vectors of 32-bit integers.
The default initial seed of the RNG is
(12345, 12345, 12345, 12345).
The nextValue method returns numbers with 32 bits of precision.| Constructor and Description |
|---|
LFSR113()
Constructs a new stream.
|
LFSR113(java.lang.String name)
Constructs a new stream with the identifier name.
|
| Modifier and Type | Method and Description |
|---|---|
LFSR113 |
clone()
Clones the current generator and return its copy.
|
int[] |
getState()
Returns the current state of the stream, represented as
an array of four integers.
|
int |
nextInt(int i,
int j)
Calls nextDouble once to create one integer between
i and j.
|
void |
resetNextSubstream()
Reinitializes the stream to the beginning of its next
substream: Ng is computed, and
Cg and Bg are set to Ng.
|
void |
resetStartStream()
Reinitializes the stream to its initial state Ig:
Cg and Bg are set to Ig.
|
void |
resetStartSubstream()
Reinitializes the stream to the beginning of its current
substream: Cg is set to Bg.
|
static void |
setPackageSeed(int[] seed)
Sets the initial seed for the class LFSR113 to the four
integers of the vector seed[0..3].
|
void |
setSeed(int[] seed)
This method is discouraged for normal use.
|
java.lang.String |
toString()
Returns a string containing the current state of this stream.
|
formatState, formatStateFull, increasedPrecision, nextArrayOfDouble, nextArrayOfInt, nextDoublepublic LFSR113()
public LFSR113(java.lang.String name)
name - name of the streampublic static void setPackageSeed(int[] seed)
seed - array of 4 elements representing the seedpublic void setSeed(int[] seed)
seed - array of 4 elements representing the seedpublic int[] getState()
public LFSR113 clone()
clone in interface CloneableRandomStreamclone in class RandomStreamBasepublic void resetStartStream()
RandomStreamresetStartStream in interface RandomStreamresetStartStream in class RandomStreamBasepublic void resetStartSubstream()
RandomStreamresetStartSubstream in interface RandomStreamresetStartSubstream in class RandomStreamBasepublic void resetNextSubstream()
RandomStreamresetNextSubstream in interface RandomStreamresetNextSubstream in class RandomStreamBasepublic java.lang.String toString()
RandomStreamtoString in interface RandomStreamtoString in class RandomStreamBasepublic int nextInt(int i,
int j)
RandomStreamBasenextInt in interface RandomStreamnextInt in class RandomStreamBasei - the smallest possible returned integerj - the largest possible returned integerTo submit a bug or ask questions, send an e-mail to Pierre L'Ecuyer.