Interface PseudoRandomGenerator

All Superinterfaces:
Serializable
All Known Implementing Classes:
AuditableRandomGenerator, ExtendedPseudoRandomGenerator, JavaRandomGenerator, MersenneTwisterGenerator, Well44497bGenerator

public interface PseudoRandomGenerator extends Serializable
Author:
Antonio J. Nebro <antonio@lcc.uma.es>
  • Method Summary

    Modifier and Type
    Method
    Description
     
    long
     
    double
     
    double
    nextDouble(double lowerBound, double upperBound)
     
    int
    nextInt(int lowerBound, int upperBound)
     
    void
    setSeed(long seed)
     
  • Method Details

    • nextInt

      int nextInt(int lowerBound, int upperBound)
    • nextDouble

      double nextDouble(double lowerBound, double upperBound)
    • nextDouble

      double nextDouble()
    • setSeed

      void setSeed(long seed)
    • getSeed

      long getSeed()
    • getName

      String getName()