class Alea::XSR128

Overview

Alea::XSR128 is the default pseudo-random number generator, with a state of 128 bits, and therefore a period of 2^64 -1. It is as fast as Random::PCG32, but yielding a 64-bit unsigned integer. If more state is needed, check Alea::XSR256.

 - period:     2^128 -1
 - state type: UInt64

Defined in:

alea/rand/rgen/xsr.cr

Constant Summary

JUMP_32B_64 = StaticArray[2271477771_u32, 4114797267_u32, 1872770499_u32, 2012404571_u32]
JUMP_32B_96 = StaticArray[3039008046_u32, 191826335_u32, 3438649583_u32, 475530850_u32]
JUMP_64B_64 = StaticArray[3159176899437800924_u64, 689838746718161413_u64]
JUMP_64B_96 = StaticArray[3895567441539718553_u64, 11272061779601802979_u64]
STATE_STORAGE_32 = 4
STATE_STORAGE_64 = 2

Constructors

Instance Method Summary

Instance methods inherited from class Alea::PRNG

next_f32 : Float32 next_f32, next_f64 : Float64 next_f64, next_i32 : Int32 next_i32, next_i64 : Int64 next_i64, next_u32 : UInt32 next_u32, next_u64 : UInt64 next_u64

Constructor Detail

def self.new(seed32 : Int, seed64 : Int) #

Initializes the PRNG with initial seeds.

@parameters:

  • seed32: value as input to init. the state of 32-bit generators.
  • seed64: value as input to init. the state of 64-bit generators.

@references:

@exceptions:


[View source]
def self.new(state32 : StaticArray(UInt32, STATE_STORAGE_32), state64 : StaticArray(UInt64, STATE_STORAGE_64)) #

Initializes the PRNG with initial states.

@parameters:

  • state32: array of values for state of 32-bit generators.
  • state64: array of values for state of 64-bit generators.

[View source]
def self.new(seed : Int) #

Initializes the PRNG with initial seed.

@parameters:

  • seed: value as input to init. the state of both 32-bit and 64-bit generators.

@references:

@exceptions:


[View source]
def self.new #

Initializes the PRNG with initial seeds readed from system resources.


[View source]

Instance Method Detail

def jump_32(long : Bool = false) : self #

Performs an advance over the 32-bit state. This is the equivalent of 2^64 calls to #next_u32.

@parameters:

  • long: flag to advance the state by 2^96 calls.

[View source]
def jump_64(long : Bool = false) : self #

Performs an advance over the 64-bit state. This is the equivalent of 2^64 calls to #next_u64.

@parameters:

  • long: flag to advance the state by 2^96 calls.

[View source]
def next_u32 : UInt32 #

Generate a uniform-distributed random UInt32.

@examples:

rng = Alea::XSR128.new
rng.next_u32 # => 1767702788

[View source]
def next_u64 : UInt64 #

Generate a uniform-distributed random UInt64.

@examples:

rng = Alea::XSR128.new
rng.next_u64 # => 9136120204379184874

[View source]