Split Mix 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
| Split | Initializes a new instance of the SplitMix64 class using OS entropy. |
| Split | Initializes a new instance of the SplitMix64 class with the specified options. |
| Split | Initializes a new instance of the SplitMix64 class from saved state. |
| Split | Initializes a new instance of the SplitMix64 class with direct state initialization. |
| Split | Initializes a new instance of the SplitMix64 class with the specified seed. |
| Split | Initializes a new instance of the SplitMix64 class with the specified seed array. |
| Split | Initializes a new instance of the SplitMix64 class with the specified seed. |
| Split | Initializes a new instance of the SplitMix64 class with the specified seed array. |
SplitMix64
Initializes a new instance of the SplitMix64 class using OS entropy.
public SplitMix64()SplitMix64(RandomOptions)
Initializes a new instance of the SplitMix64 class with the specified options.
SplitMix64(ReadOnlySpan<Byte>)
Initializes a new instance of the SplitMix64 class from saved state.
SplitMix64(UInt64)
Initializes a new instance of the SplitMix64 class with direct state initialization.
Remarks
This constructor directly sets the internal state to the specified value, matching the canonical SplitMix64 initialization.
SplitMix64(Int64, SeedProfile)
Initializes a new instance of the SplitMix64 class with the specified seed.
public SplitMix64(
long seed,
SeedProfile seedProfile
)Parameters
- seed Int64
- seedProfile SeedProfile
SplitMix64(ReadOnlySpan<UInt64>, SeedProfile)
Initializes a new instance of the SplitMix64 class with the specified seed array.
public SplitMix64(
ReadOnlySpan<ulong> seedMaterial,
SeedProfile seedProfile
)Parameters
- seedMaterial ReadOnlySpan<UInt64>
- seedProfile SeedProfile
SplitMix64(Int64, StreamAddress, SeedProfile)
Initializes a new instance of the SplitMix64 class with the specified seed.
public SplitMix64(
long seed,
StreamAddress streamAddress,
SeedProfile seedProfile = SeedProfile.Default
)Parameters
- seed Int64
- streamAddress StreamAddress
- seedProfile SeedProfile (Optional)
SplitMix64(ReadOnlySpan<UInt64>, StreamAddress, SeedProfile)
Initializes a new instance of the SplitMix64 class with the specified seed array.
public SplitMix64(
ReadOnlySpan<ulong> seedMaterial,
StreamAddress streamAddress,
SeedProfile seedProfile
)Parameters
- seedMaterial ReadOnlySpan<UInt64>
- streamAddress StreamAddress
- seedProfile SeedProfile