Uses of Class
org.uncommons.maths.random.SeedException
-
Packages that use SeedException Package Description org.uncommons.maths.random This package provides deterministic, repeatable, pseudo-random number generators, a set of strategies for seeding them, and classes for generating values from different probability distributions. -
-
Uses of SeedException in org.uncommons.maths.random
Methods in org.uncommons.maths.random that throw SeedException Modifier and Type Method Description byte[]
DevRandomSeedGenerator. generateSeed(int length)
Generate a seed value for a random number generator.byte[]
RandomDotOrgSeedGenerator. generateSeed(int length)
Generate a seed value for a random number generator.byte[]
SecureRandomSeedGenerator. generateSeed(int length)
Generate a seed value for a random number generator.byte[]
SeedGenerator. generateSeed(int length)
Generate a seed value for a random number generator.Constructors in org.uncommons.maths.random that throw SeedException Constructor Description AESCounterRNG(SeedGenerator seedGenerator)
Seed the RNG using the provided seed generation strategy to create a 128-bit seed.CellularAutomatonRNG(SeedGenerator seedGenerator)
Seed the RNG using the provided seed generation strategy.CMWC4096RNG(SeedGenerator seedGenerator)
Seed the RNG using the provided seed generation strategy.JavaRNG(SeedGenerator seedGenerator)
Seed the RNG using the provided seed generation strategy.MersenneTwisterRNG(SeedGenerator seedGenerator)
Seed the RNG using the provided seed generation strategy.XORShiftRNG(SeedGenerator seedGenerator)
Seed the RNG using the provided seed generation strategy.
-