C# Класс RandomOps.XorShift

Pseudo-Random Number Generator (PRNG) based on XorShift as described in the paper: G. Marsaglia, Random Number Generators, Journal of Modern Applied Statistical Methods, 2003, vol. 2, no. 1, p. 2-13. Period of this PRNG is about 2^160. Not thread-safe.
This is a translation of the C source-code published 2003-05-13 in the newsgroup comp.lang.c by George Marsaglia, published here with Marsaglia's authorization under the license in license.txt
Наследование: RanUInt32Array
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
SeedDefault System.UInt32[]

Открытые методы

Метод Описание
Rand ( ) : UInt32

Draw a random number in inclusive range {0, .., RandMax}

Seed ( UInt32 seed ) : void

Seed with an array.

XorShift ( ) : System

Constructs the PRNG-object without a seed. Remember to seed it before drawing random numbers.

XorShift ( Random rand ) : System

Constructs the PRNG-object and uses another RNG for seeding.

XorShift ( UInt32 seed ) : System

Constructs the PRNG-object using the designated seed. This is useful if you want to repeat experiments with the same sequence of pseudo-random numbers.

Описание методов

Rand() публичный закрытый Метод

Draw a random number in inclusive range {0, .., RandMax}
public final Rand ( ) : UInt32
Результат System.UInt32

Seed() публичный закрытый Метод

Seed with an array.
public final Seed ( UInt32 seed ) : void
seed System.UInt32
Результат void

XorShift() публичный Метод

Constructs the PRNG-object without a seed. Remember to seed it before drawing random numbers.
public XorShift ( ) : System
Результат System

XorShift() публичный Метод

Constructs the PRNG-object and uses another RNG for seeding.
public XorShift ( Random rand ) : System
rand Random
Результат System

XorShift() публичный Метод

Constructs the PRNG-object using the designated seed. This is useful if you want to repeat experiments with the same sequence of pseudo-random numbers.
public XorShift ( UInt32 seed ) : System
seed System.UInt32
Результат System

Описание свойств

SeedDefault публичное статическое свойство

Default seed.
public static UInt32[],System SeedDefault
Результат System.UInt32[]