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 Simulation - module implementing processes and resources
27 Monitor - dummy module for backward compatibility
28 SimulationTrace - module implementing event tracing
29 SimulationRT - module for simulation speed control
30 SimulationStep - module for stepping through simulation event by event
31 SimPlot - Tk - based plotting module
32 SimGui - Tk - based SimPy GUI module
33 Lister - module for prettyprinting class instances
34 Lib - module containing SimPy entity classes (Process etc.)
35 Recording - module containing SimPy classes for recording results (Monitor, Tally)
36 Globals - module providing global Simulation object and the global
37 simulation methods
38
39 __version__ = '$Revision: 239 $ $Date: 2009-01-27 14:34:52 +0100 (Di, 27 Jan 2009) $ kgm'
40 """
41
42 __SimPyVersion__ = '2.0'
43