Package SimPy
[hide private]
[frames] | no frames]

Source Code for Package SimPy

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