RngSkip

public final class RngSkip

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

static RngSkip
create(Scope scope, Operand<?> resource, Operand<Long> algorithm, Operand<Long> delta)
Factory method to create a class wrapping a new RngSkip operation.

Inherited Methods

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