Uses of Class
org.cicirello.math.rand.EnhancedSplittableGenerator
Package
Description
Collection of classes related to random number generation.
-
Uses of EnhancedSplittableGenerator in org.cicirello.math.rand
Modifier and TypeMethodDescriptionstatic EnhancedSplittableGenerator
Gets an EnhancedSplittableGenerator wrapping an instance of any random number generator supported by your version of Java as specified by its name, as documented via theRandomGenerator.SplittableGenerator.of(java.lang.String)
method.EnhancedSplittableGenerator.split()
Returns a new EnhancedSplittableGenerator split off from this one, such that the new one wraps a split of the wrapped random number generator.EnhancedSplittableGenerator.split
(RandomGenerator.SplittableGenerator source) Returns a new EnhancedSplittableGenerator split off from this one, such that the new one wraps a split of the wrapped random number generator.Modifier and TypeMethodDescriptionEnhancedSplittableGenerator.esplits()
Gets an effectively unlimited stream ofEnhancedSplittableGenerator
objects.EnhancedSplittableGenerator.esplits
(long streamSize) Gets a stream ofEnhancedSplittableGenerator
objects.EnhancedSplittableGenerator.esplits
(long streamSize, RandomGenerator.SplittableGenerator source) Gets a stream ofEnhancedSplittableGenerator
objects.EnhancedSplittableGenerator.esplits
(RandomGenerator.SplittableGenerator source) Gets an effectively unlimited stream ofEnhancedSplittableGenerator
objects.