SuanShu, a Java numerical and statistical library

com.numericalmethod.suanshu.stats.random
Interface RandomLongGenerator

All Superinterfaces:
RandomNumberGenerator
All Known Subinterfaces:
LinearCongruentialGenerator
All Known Implementing Classes:
CombinedLinearCongruentialGenerator, LEcuyer, Lehmer, MersenneTwister, MRG, RNG, Uniform

public interface RandomLongGenerator
extends RandomNumberGenerator

A (pseudo) random number generator that generates a sequence of longs that lack any pattern.


Method Summary
 long nextLong()
          Get the next random long.
 
Methods inherited from interface com.numericalmethod.suanshu.stats.random.RandomNumberGenerator
nextDouble, seed
 

Method Detail

nextLong

long nextLong()
Get the next random long.

Returns:
the next random long

SuanShu, a Java numerical and statistical library

Copyright © 2011 Numerical Method Inc. Ltd. All Rights Reserved.