Threefry4x64 Constructor

Definition

Namespace: Numerics.NET.Random
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0

Overload List

Threefry4x64() Initializes a new instance of the Threefry4x64 class using OS entropy.
Threefry4x64(RandomOptions) Initializes a new instance of the Threefry4x64 class with the specified options.
Threefry4x64(ReadOnlySpan<Byte>) Initializes a new instance of the Threefry4x64 class from saved state.
Threefry4x64(Int64, SeedProfile) Initializes a new instance of the Threefry4x64 class with the specified seed.
Threefry4x64(ReadOnlySpan<UInt64>, SeedProfile) Initializes a new instance of the Threefry4x64 class with the specified seed array.
Threefry4x64(Int64, StreamAddress, SeedProfile) Initializes a new instance of the Threefry4x64 class with the specified seed.
Threefry4x64(ReadOnlySpan<UInt64>, StreamAddress, SeedProfile) Initializes a new instance of the Threefry4x64 class with the specified seed array.

Threefry4x64

Initializes a new instance of the Threefry4x64 class using OS entropy.
C#
public Threefry4x64()

Threefry4x64(RandomOptions)

Initializes a new instance of the Threefry4x64 class with the specified options.
C#
public Threefry4x64(
	RandomOptions options
)

Parameters

options  RandomOptions
 

Threefry4x64(ReadOnlySpan<Byte>)

Initializes a new instance of the Threefry4x64 class from saved state.
C#
public Threefry4x64(
	ReadOnlySpan<byte> state
)

Parameters

state  ReadOnlySpan<Byte>
 

Threefry4x64(Int64, SeedProfile)

Initializes a new instance of the Threefry4x64 class with the specified seed.
C#
public Threefry4x64(
	long seed,
	SeedProfile seedProfile = SeedProfile.Default
)

Parameters

seed  Int64
 
seedProfile  SeedProfile  (Optional)
 

Threefry4x64(ReadOnlySpan<UInt64>, SeedProfile)

Initializes a new instance of the Threefry4x64 class with the specified seed array.
C#
public Threefry4x64(
	ReadOnlySpan<ulong> seedMaterial,
	SeedProfile seedProfile = SeedProfile.Default
)

Parameters

seedMaterial  ReadOnlySpan<UInt64>
 
seedProfile  SeedProfile  (Optional)
 

Threefry4x64(Int64, StreamAddress, SeedProfile)

Initializes a new instance of the Threefry4x64 class with the specified seed.
C#
public Threefry4x64(
	long seed,
	StreamAddress streamAddress,
	SeedProfile seedProfile = SeedProfile.Default
)

Parameters

seed  Int64
 
streamAddress  StreamAddress
 
seedProfile  SeedProfile  (Optional)
 

Threefry4x64(ReadOnlySpan<UInt64>, StreamAddress, SeedProfile)

Initializes a new instance of the Threefry4x64 class with the specified seed array.
C#
public Threefry4x64(
	ReadOnlySpan<ulong> seedMaterial,
	StreamAddress streamAddress,
	SeedProfile seedProfile = SeedProfile.Default
)

Parameters

seedMaterial  ReadOnlySpan<UInt64>
 
streamAddress  StreamAddress
 
seedProfile  SeedProfile  (Optional)
 

See Also