Seed Sequences.Independent Method
Creates a new seed sequence that is independent from other sequences generated by this method.
Definition
Namespace: Numerics.NET.Random
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0
C#
A new instance of SeedSequence initialized with high-entropy, uncorrelated seed values.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0
public static SeedSequence Independent()Return Value
SeedSequenceA new instance of SeedSequence initialized with high-entropy, uncorrelated seed values.
Remarks
This method uses cryptographically strong random number generation
to ensure that each returned seed sequence is statistically independent from others.
It is suitable for scenarios where independent random number streams are required,
but reproducibility is not a concern.