Package org.caffinitas.ohc.jmh
Class FasterRandom
- java.lang.Object
-
- org.caffinitas.ohc.jmh.FasterRandom
-
- All Implemented Interfaces:
org.apache.commons.math3.random.RandomGenerator
- Direct Known Subclasses:
AllocatorBenchmark.Rand
public class FasterRandom extends Object implements org.apache.commons.math3.random.RandomGenerator
-
-
Constructor Summary
Constructors Constructor Description FasterRandom()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleannextBoolean()voidnextBytes(byte[] bytes)doublenextDouble()floatnextFloat()doublenextGaussian()intnextInt()intnextInt(int i)longnextLong()voidsetSeed(int seed)voidsetSeed(int[] ints)voidsetSeed(long seed)
-
-
-
Method Detail
-
setSeed
public void setSeed(int seed)
- Specified by:
setSeedin interfaceorg.apache.commons.math3.random.RandomGenerator
-
setSeed
public void setSeed(int[] ints)
- Specified by:
setSeedin interfaceorg.apache.commons.math3.random.RandomGenerator
-
setSeed
public void setSeed(long seed)
- Specified by:
setSeedin interfaceorg.apache.commons.math3.random.RandomGenerator
-
nextBytes
public void nextBytes(byte[] bytes)
- Specified by:
nextBytesin interfaceorg.apache.commons.math3.random.RandomGenerator
-
nextInt
public int nextInt()
- Specified by:
nextIntin interfaceorg.apache.commons.math3.random.RandomGenerator
-
nextInt
public int nextInt(int i)
- Specified by:
nextIntin interfaceorg.apache.commons.math3.random.RandomGenerator
-
nextLong
public long nextLong()
- Specified by:
nextLongin interfaceorg.apache.commons.math3.random.RandomGenerator
-
nextBoolean
public boolean nextBoolean()
- Specified by:
nextBooleanin interfaceorg.apache.commons.math3.random.RandomGenerator
-
nextFloat
public float nextFloat()
- Specified by:
nextFloatin interfaceorg.apache.commons.math3.random.RandomGenerator
-
nextDouble
public double nextDouble()
- Specified by:
nextDoublein interfaceorg.apache.commons.math3.random.RandomGenerator
-
nextGaussian
public double nextGaussian()
- Specified by:
nextGaussianin interfaceorg.apache.commons.math3.random.RandomGenerator
-
-