Uses of Interface
org.apache.commons.rng.RandomProviderState
-
Packages that use RandomProviderState Package Description org.apache.commons.rng This package contains the library's interface to be used by client code that needs a generator of sequences of pseudo-random numbers that are uniformly distributed in a specified range.org.apache.commons.rng.core Base classes for thegeneration of uniformly distributed random numbers
. -
-
Uses of RandomProviderState in org.apache.commons.rng
Methods in org.apache.commons.rng that return RandomProviderState Modifier and Type Method Description RandomProviderState
RestorableUniformRandomProvider. saveState()
Saves the state of a generator.Methods in org.apache.commons.rng with parameters of type RandomProviderState Modifier and Type Method Description void
RestorableUniformRandomProvider. restoreState(RandomProviderState state)
Restores the state of a generator. -
Uses of RandomProviderState in org.apache.commons.rng.core
Classes in org.apache.commons.rng.core that implement RandomProviderState Modifier and Type Class Description class
RandomProviderDefaultState
Wraps the internal state of a generator instance.Methods in org.apache.commons.rng.core that return RandomProviderState Modifier and Type Method Description RandomProviderState
BaseProvider. saveState()
Saves the state of a generator.Methods in org.apache.commons.rng.core with parameters of type RandomProviderState Modifier and Type Method Description void
BaseProvider. restoreState(RandomProviderState state)
Restores the state of a generator.
-