Class RandomGeneratorFactory

java.lang.Object
org.apache.commons.math3.random.RandomGeneratorFactory

public class RandomGeneratorFactory extends Object
Utilities for creating RandomGenerator instances.
Since:
3.3
  • Method Details

    • createRandomGenerator

      public static RandomGenerator createRandomGenerator(Random rng)
      Creates a RandomDataGenerator instance that wraps a Random instance.
      Parameters:
      rng - JDK Random instance that will generate the the random data.
      Returns:
      the given RNG, wrapped in a RandomGenerator.
    • convertToLong

      public static long convertToLong(int[] seed)
      Converts seed from one representation to another.
      Parameters:
      seed - Original seed.
      Returns:
      the converted seed.