1
2
3 """
4 SimPy a process - based simulation package in Python
5
6 LICENSE:
7 Copyright (C) 2002, 2004, 2005, 2006, 2007, 2008, 2009 Klaus G. Muller, Tony Vignaux
8 mailto: kgmuller@xs4all.nl and Tony.Vignaux@vuw.ac.nz
9
10 This library is free software; you can redistribute it and / or
11 modify it under the terms of the GNU Lesser General Public
12 License as published by the Free Software Foundation; either
13 version 2.1 of the License, or (at your option) any later version.
14
15 This library is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
19
20 You should have received a copy of the GNU Lesser General Public
21 License along with this library; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 - 1307 USA
23 END OF LICENSE
24
25 Contains the following modules:
26 Lib - module with all base classes of SimPy
27 Globals - module providing a global Simulation object
28 Simulation - module implementing processes and resources
29 Monitor - dummy module for backward compatibility
30 SimulationTrace - module implementing event tracing
31 SimulationRT - module for simulation speed control
32 SimulationStep - module for stepping through simulation event by event
33 SimPlot - Tk - based plotting module
34 SimGui - Tk - based SimPy GUI module
35 Lister - module for prettyprinting class instances
36 Lib - module containing SimPy entity classes (Process etc.)
37 Recording - module containing SimPy classes for recording results (Monitor, Tally)
38 Globals - module providing global Simulation object and the global
39 simulation methods
40
41 __version__ = '$Revision: 306 $ $Date: 2009-04-02 06:08:56 +0200 (Do, 02 Apr 2009) $ kgm'
42 """
43
44 __SimPyVersion__ = '2.0.1'
45