Unit
RndGenerators
TRngStreamIndependence = (rsiNone, rsiLeapfrog, rsiBlockSplitting);
| Value | Description |
|---|---|
| rsiNone | All random streams will return the series of numbers. |
| rsiLeapfrog | Random streams will be sample interleaved. If there are three random streams defined, they will be filled from one continues random number stream like this: Leapfroging is not very suitable, if there is a need for a large number of independent streams. |
| rsiBlockSplitting | Random streams will be block interleaved. The following example is for block size 2 and random stream count 3. The block size is independent from the number of samples that are generated on each call from each of the streams.
|
| Copyright 2008 Dew Research |