Uses of Class
org.cicirello.math.rand.EnhancedSplittableGenerator
Packages that use EnhancedSplittableGenerator
Package
Description
Collection of classes related to random number generation.
-
Uses of EnhancedSplittableGenerator in org.cicirello.math.rand
Methods in org.cicirello.math.rand that return EnhancedSplittableGeneratorModifier 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.Methods in org.cicirello.math.rand that return types with arguments of type EnhancedSplittableGeneratorModifier 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.