Mersenne Twister 64 Constructor
Definition
Namespace: Numerics.NET.Random
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0
Overload List
| Mersenne | Initializes a new instance of the MersenneTwister64 class using OS entropy. |
| Mersenne | Initializes a new instance of the MersenneTwister64 class with the specified options. |
| Mersenne | Initializes a new instance of the MersenneTwister64 class from saved state. |
| Mersenne | Initializes a new instance of the MersenneTwister64 class with the specified seed. |
| Mersenne | Initializes a new instance of the MersenneTwister64 class with the specified seed array. |
| Mersenne | Initializes a new instance of the MersenneTwister64 class with the specified seed. |
| Mersenne | Initializes a new instance of the MersenneTwister64 class with the specified seed array. |
MersenneTwister64
Initializes a new instance of the MersenneTwister64 class using OS entropy.
public MersenneTwister64()MersenneTwister64(RandomOptions)
Initializes a new instance of the MersenneTwister64 class with the specified options.
MersenneTwister64(ReadOnlySpan<Byte>)
Initializes a new instance of the MersenneTwister64 class from saved state.
MersenneTwister64(Int64, SeedProfile)
Initializes a new instance of the MersenneTwister64 class with the specified seed.
public MersenneTwister64(
long seed,
SeedProfile seedProfile = SeedProfile.Default
)Parameters
- seed Int64
- seedProfile SeedProfile (Optional)
MersenneTwister64(ReadOnlySpan<UInt64>, SeedProfile)
Initializes a new instance of the MersenneTwister64 class with the specified seed array.
public MersenneTwister64(
ReadOnlySpan<ulong> seedMaterial,
SeedProfile seedProfile = SeedProfile.Default
)Parameters
- seedMaterial ReadOnlySpan<UInt64>
- seedProfile SeedProfile (Optional)
MersenneTwister64(Int64, StreamAddress, SeedProfile)
Initializes a new instance of the MersenneTwister64 class with the specified seed.
public MersenneTwister64(
long seed,
StreamAddress streamAddress,
SeedProfile seedProfile = SeedProfile.Default
)Parameters
- seed Int64
- streamAddress StreamAddress
- seedProfile SeedProfile (Optional)
MersenneTwister64(ReadOnlySpan<UInt64>, StreamAddress, SeedProfile)
Initializes a new instance of the MersenneTwister64 class with the specified seed array.
public MersenneTwister64(
ReadOnlySpan<ulong> seedMaterial,
StreamAddress streamAddress,
SeedProfile seedProfile = SeedProfile.Default
)Parameters
- seedMaterial ReadOnlySpan<UInt64>
- streamAddress StreamAddress
- seedProfile SeedProfile (Optional)