SSJ API Documentation
Stochastic Simulation in Java
Loading...
Searching...
No Matches
RandomStreamFactory.java
1/*
2 * Class: RandomStreamFactory
3 * Description: random stream factory that can construct instances of
4 a given type of random stream
5 * Environment: Java
6 * Software: SSJ
7 * Copyright (C) 2001 Pierre L'Ecuyer and Universite de Montreal
8 * Organization: DIRO, Universite de Montreal
9 * @author
10 * @since
11 *
12 *
13 * Licensed under the Apache License, Version 2.0 (the "License");
14 * you may not use this file except in compliance with the License.
15 * You may obtain a copy of the License at
16 *
17 * http://www.apache.org/licenses/LICENSE-2.0
18 *
19 * Unless required by applicable law or agreed to in writing, software
20 * distributed under the License is distributed on an "AS IS" BASIS,
21 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 * See the License for the specific language governing permissions and
23 * limitations under the License.
24 *
25 */
26package umontreal.ssj.rng;
27
28import umontreal.ssj.rng.RandomStream;
29import umontreal.ssj.rng.MRG32k3a;
30
47public interface RandomStreamFactory {
48
60
61}
Represents a random stream factory capable of constructing instances of a given type of random stream...
RandomStream newInstance()
Constructs and returns a new random stream.
This interface defines the basic structures to handle multiple streams of uniform (pseudo)random numb...