|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.util.Random
jas.random.JavaRandom
public class JavaRandom
A wrapper class for the default java.util.Random class. This class is able to link itself to the Sim.getRnd() random generator and behaves like the java Random class.
Title: JAS
Description: Java Agent-based Simulation library
Copyright (C) 2002 Michele Sonnessa
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
Constructor Summary | |
---|---|
JavaRandom(RandomGenerator generator)
Default constructor. |
Method Summary | |
---|---|
boolean |
nextBoolean()
Return a random boolean. |
void |
nextBytes(byte[] bytes)
Unsupported operation. |
double |
nextDouble()
Generate a double within the exclusive range (0, 1). |
float |
nextFloat()
Generate a float within the exclusive range (0, 1). |
double |
nextGaussian()
Generate a random number from the normal distribution with mean 0.0 and standard deviation 1.0. |
int |
nextInt()
Unsupported operation. |
int |
nextInt(int n)
Generate a uniform random number from 0 and the given parameter. |
long |
nextLong()
Unsupported operation. |
void |
setSeed(long seed)
Change the seed number. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public JavaRandom(RandomGenerator generator)
generator
- A random generator of jas.random.RandomGenerator class.Method Detail |
---|
public boolean nextBoolean()
nextBoolean
in class java.util.Random
public void nextBytes(byte[] bytes)
nextBytes
in class java.util.Random
public double nextDouble()
nextDouble
in class java.util.Random
public float nextFloat()
nextFloat
in class java.util.Random
public double nextGaussian()
nextGaussian
in class java.util.Random
public int nextInt()
nextInt
in class java.util.Random
public int nextInt(int n)
nextInt
in class java.util.Random
n
- The upper inclusive bound.
public long nextLong()
nextLong
in class java.util.Random
public void setSeed(long seed)
setSeed
in class java.util.Random
seed
- The new seed number of the distribution.
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |