View Javadoc

1   /*
2    * @(#)Dist.java Apr 3, 2003
3    * 
4    * Copyright (c) 2003 Delft University of Technology Jaffalaan 5, 2628 BX Delft,
5    * the Netherlands All rights reserved.
6    * 
7    * This software is proprietary information of Delft University of Technology
8    * The code is published under the General Public License
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  }