- setAntithetic: (BOOL)antiT The setAntithetic method turns on or off antithetic output (default=off). Antithetic output is (unsignedMax - u) or (1.0 - d).
- initGenerator: (unsigned)vGen The initGenerator method resets the state of a virtual generator to the start of segment #0.
- initAll The initAll method resets the state of all the virtual generators to the start of segment #0.
Phase: Using
- (unsigned)getNumGenerators The getNumGenerators method returns the current number of virtual generators (A).
- (unsigned)getNumSegments The getNumSegments method returns log2(the current number of segments) = v.
- (unsigned)getSegmentLength The getSegmentLength method returns log2(the current segment length) = w.
- (BOOL)getAntithetic The getAntithetic method returns the current value of the parameter.
- restartGenerator: (unsigned)vGen The restartGenerator method resets the state of a virtual generator to the start of the current segment.
- advanceGenerator: (unsigned)vGen The advanceGenerator method resets the state of a virtual generator to the start of the next segment.
- jumpGenerator: (unsigned)vGentoSegment: (unsigned long long int)seg The jumpGenerator:toSegment: method resets the state of a virtual generator to the start of the specified segment.
- restartAll The restartAll method resets the state of all the virtual generators to the start of their current segment.
- advanceAll The advanceAll method resets the state of all the virtual generators to the start of their next segment.
- jumpAllToSegment: (unsigned long long int)seg The jumpAlltoSegment: method resets the state of all the virtual generators to the start of the specified segment.
- (unsigned long long int)getCurrentCount: (unsigned)vGen The getCurrentCount method returns the current count of the specified virtual generator (i.e. the number of variates delivered).
- (unsigned long long int)getCurrentSegment: (unsigned)vGen The getCurrentSegment method returns the number of the current segment of the specified virtual generator.
- reset The -reset method sets the generator back to the state it had at start or at the last use of -setStateFromSeed(s). CurrentCount is zeroed.