SSJ  3.3.1
Stochastic Simulation in Java
Public Member Functions | Protected Member Functions | List of all members
UnuranDiscreteInt Class Reference

This class permits one to create a discrete univariate generator using UNURAN via its string API. More...

Inheritance diagram for UnuranDiscreteInt:
[legend]
Collaboration diagram for UnuranDiscreteInt:
[legend]

Public Member Functions

 UnuranDiscreteInt (RandomStream s, String genStr)
 Same as UnuranDiscreteInt(s, s, genStr).
 
 UnuranDiscreteInt (RandomStream s, RandomStream aux, String genStr)
 Constructs a new discrete random number generator using the UNURAN generator specification string genStr, main stream s, and auxiliary stream aux.
 
int nextInt ()
 
void nextArrayOfInt (int[] v, int start, int n)
 
DiscreteDistributionInt getDistribution ()
 
RandomStream getStream ()
 
RandomStream getAuxStream ()
 Returns the auxiliary random number stream.
 
- Public Member Functions inherited from RandomVariateGenInt
 RandomVariateGenInt (RandomStream s, DiscreteDistributionInt dist)
 Creates a new random variate generator for the discrete distribution dist, using stream s. More...
 
int nextInt ()
 Generates a random number (an integer) from the discrete distribution contained in this object. More...
 
void nextArrayOfInt (int[] v, int start, int n)
 Generates n random numbers from the discrete distribution contained in this object. More...
 
int [] nextArrayOfInt (int n)
 Generates n random numbers from the discrete distribution contained in this object, and returns them in a new array of size n. More...
 
DiscreteDistributionInt getDistribution ()
 Returns the umontreal.ssj.probdist.DiscreteDistributionInt used by this generator. More...
 
- Public Member Functions inherited from RandomVariateGen
 RandomVariateGen (RandomStream s, Distribution dist)
 Creates a new random variate generator from the distribution dist, using stream s. More...
 
double nextDouble ()
 Generates a random number from the continuous distribution contained in this object. More...
 
void nextArrayOfDouble (double[] v, int start, int n)
 Generates n random numbers from the continuous distribution contained in this object. More...
 
double [] nextArrayOfDouble (int n)
 Generates n random numbers from the continuous distribution contained in this object, and returns them in a new array of size n. More...
 
RandomStream getStream ()
 Returns the umontreal.ssj.rng.RandomStream used by this generator. More...
 
void setStream (RandomStream stream)
 Sets the umontreal.ssj.rng.RandomStream used by this generator to stream.
 
Distribution getDistribution ()
 Returns the umontreal.ssj.probdist.Distribution used by this generator. More...
 
String toString ()
 Returns a String containing information about the current generator.
 

Protected Member Functions

void finalize ()
 

Additional Inherited Members

- Protected Attributes inherited from RandomVariateGen
RandomStream stream
 
Distribution dist
 

Detailed Description

This class permits one to create a discrete univariate generator using UNURAN via its string API.


The documentation for this class was generated from the following file: