Uses of Class
org.apache.commons.rng.core.source32.IntProvider

Packages that use IntProvider
Package
Description
Concrete algorithms for int-based sources of randomness.
  • Uses of IntProvider in org.apache.commons.rng.core.source32

    Modifier and Type
    Class
    Description
    (package private) class 
    This abstract class is a base for algorithms from the Permuted Congruential Generator (PCG) family that use an internal 64-bit Linear Congruential Generator (LCG) and output 32-bits per cycle.
    (package private) class 
    This abstract class is a base for algorithms from the Permuted Congruential Generator (PCG) family that use an internal 64-bit Multiplicative Congruential Generator (MCG) and output 32-bits per cycle.
    class 
    This abstract class implements the WELL class of pseudo-random number generator from François Panneton, Pierre L'Ecuyer and Makoto Matsumoto.
    (package private) class 
    This abstract class is a base for algorithms from the Xor-Shift-Rotate family of 32-bit generators with 64-bits of state.
    (package private) class 
    This abstract class is a base for algorithms from the Xor-Shift-Rotate family of 32-bit generators with 128-bits of state.
    class 
    Implement the Small, Fast, Counting (SFC) 32-bit generator of Chris Doty-Humphrey.
    class 
    A fast cryptographic pseudo-random number generator.
    class 
    A provider that uses the Random.nextInt() method of the JDK's Random class as the source of randomness.
    class 
    Implement Bob Jenkins's small fast (JSF) 32-bit generator.
    class 
    Port from Marsaglia's "KISS" algorithm.
    final class 
    A 32-bit all purpose generator.
    class 
    This class implements a powerful pseudo-random number generator developed by Makoto Matsumoto and Takuji Nishimura during 1996-1997.
    class 
    Middle Square Weyl Sequence Random Number Generator.
    class 
    Port from Marsaglia's "Multiply-With-Carry" algorithm.
    class 
    A Permuted Congruential Generator (PCG) that is composed of a 64-bit Multiplicative Congruential Generator (MCG) combined with the XSH-RR (xorshift; random rotate) output transformation to create 32-bit output.
    class 
    A Permuted Congruential Generator (PCG) that is composed of a 64-bit Multiplicative Congruential Generator (MCG) combined with the XSH-RS (xorshift; random shift) output transformation to create 32-bit output.
    class 
    A Permuted Congruential Generator (PCG) that is composed of a 64-bit Linear Congruential Generator (LCG) combined with the XSH-RR (xorshift; random rotate) output transformation to create 32-bit output.
    class 
    A Permuted Congruential Generator (PCG) that is composed of a 64-bit Linear Congruential Generator (LCG) combined with the XSH-RS (xorshift; random shift) output transformation to create 32-bit output.
    class 
    This class implements the WELL1024a pseudo-random number generator from François Panneton, Pierre L'Ecuyer and Makoto Matsumoto.
    class 
    This class implements the WELL19937a pseudo-random number generator from François Panneton, Pierre L'Ecuyer and Makoto Matsumoto.
    class 
    This class implements the WELL19937c pseudo-random number generator from François Panneton, Pierre L'Ecuyer and Makoto Matsumoto.
    class 
    This class implements the WELL44497a pseudo-random number generator from François Panneton, Pierre L'Ecuyer and Makoto Matsumoto.
    class 
    This class implements the WELL44497b pseudo-random number generator from François Panneton, Pierre L'Ecuyer and Makoto Matsumoto.
    class 
    This class implements the WELL512a pseudo-random number generator from François Panneton, Pierre L'Ecuyer and Makoto Matsumoto.
    class 
    A fast 32-bit generator suitable for float generation.
    class 
    A fast all-purpose 32-bit generator.
    class 
    A fast 32-bit generator suitable for float generation.
    class 
    A fast all-purpose 32-bit generator.
    class 
    A fast all-purpose 32-bit generator.
    Constructors in org.apache.commons.rng.core.source32 with parameters of type IntProvider
    Modifier
    Constructor
    Description
    protected
    Creates a new instance copying the state from the source.