1
2
3
4
5
6
7
8
9
10 package nl.tudelft.simulation.jstats.distributions;
11
12 import nl.tudelft.simulation.jstats.streams.StreamInterface;
13
14 /***
15 * The Distribution class forms the basis for all statistical distributions.
16 * <p>
17 * (c) copyright 2002-2004 <a href="http://www.simulation.tudelft.nl">Delft
18 * University of Technology </a>, the Netherlands. <br>
19 * See for project information <a href="http://www.simulation.tudelft.nl">
20 * www.simulation.tudelft.nl </a> <br>
21 * License of use: <a href="http://www.gnu.org/copyleft/gpl.html">General Public
22 * License (GPL) </a>, no warranty <br>
23 *
24 * @author <a href="http://www.tbm.tudelft.nl/webstaf/alexandv/index.htm">
25 * Alexander Verbraeck </a> <br>
26 * <a href="http://www.tbm.tudelft.nl/webstaf/peterja/index.htm"> Peter
27 * Jacobs </a>
28 * @version 1.7 2004-03-22
29 * @since 1.2
30 */
31 public abstract class Dist implements java.io.Serializable
32 {
33 /*** stream is the random number generator from which to draw */
34 protected StreamInterface stream;
35
36 /***
37 * Constructs a new Distribution.
38 *
39 * @param stream the stream for this mathematical distribution.
40 */
41 public Dist(final StreamInterface stream)
42 {
43 this.stream = stream;
44 }
45 }