Advance the counter of a counter-based RNG.
The state of the RNG after `rng_skip(n)` will be the same as that after `stateful_uniform([n])` (or any other distribution). The actual increment added to the counter is an unspecified implementation detail.
Public Methods
Inherited Methods
boolean |
equals(Object arg0)
|
final Class<?> |
getClass()
|
int |
hashCode()
|
final void |
notify()
|
final void |
notifyAll()
|
String |
toString()
|
final void |
wait(long arg0, int arg1)
|
final void |
wait(long arg0)
|
final void |
wait()
|
Public Methods
public static RngSkip create (Scope scope, Operand<?> resource, Operand<Long> algorithm, Operand<Long> delta)
Factory method to create a class wrapping a new RngSkip operation.
Parameters
scope | current scope |
---|---|
resource | The handle of the resource variable that stores the state of the RNG. |
algorithm | The RNG algorithm. |
delta | The amount of advancement. |
Returns
- a new instance of RngSkip