Home | Trees | Indices | Help |
---|
|
object --+ | threading._Verbose --+ | threading.Thread --+ | Generator
class Generator(threading.Thread) This class inherits the class Thread from the Python module threading. It must override the function run() to can be executed as a separate thread. This is necessary, because the GUI would freeze during the calculation and the OS will offer the termination of the GUI. The Generator class is just a box object for separately executed Python code. It starts the calculation of the given trials which are generated with the GUI. It defines the necessary functions for the algorithms and collects the information about the created data files.
|
|||
|
|||
|
|||
Inherited from Inherited from Inherited from Inherited from |
|
|||
LockObject = threading.Lock()
|
|
|||
Inherited from Inherited from |
|
Uses a dictionary for the creation of new datafiles. dictionary structure: { index : { "init_params" : {...}, "individual_params" : {..}}}
|
starts a new thread for the calculation of new datafiles
|
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Wed Apr 27 17:47:09 2011 | http://epydoc.sourceforge.net |