Interface RandomAlgorithm

All Known Implementing Classes:
BaseRandomAlgorithm, SimpleRandom

public interface RandomAlgorithm
  • Method Details

    • nextDouble

      double nextDouble()
    • nextInt

      int nextInt()
    • nextInt

      int nextInt(int n)
    • nextLong

      long nextLong()
    • getBoundedInt

      int getBoundedInt(int lower, int upper)
    • getBoundedDouble

      double getBoundedDouble(double lower, double upper)
    • nextGaussian

      double nextGaussian(double mean, double std)
    • resetSeed

      void resetSeed(long seed)