SSJ API Documentation
Stochastic Simulation in Java
Loading...
Searching...
No Matches
RandomSampler.java
1package umontreal.ssj.mcqmctools.anova;
2
3import umontreal.ssj.rng.RandomStream;
4
5public interface RandomSampler extends Sampler {
10 public void setStream(RandomStream stream);
11
17}
void setStream(RandomStream stream)
Use stream as the source of randomness.
RandomStream getStream()
Returns the currently used random stream.
This interface defines the basic structures to handle multiple streams of uniform (pseudo)random numb...