The main module, where you should start!¶
This is the entry point of the program, the first module executed.
Here you can parameter all the program, no need to read other source files.
How it works!¶
There are 6 main steps:
- importation of the useful packages
- instantiation if the main objects (Game, BoardAndRules and Simulation)
- instantiation if the players
- settings of the simulation parameters (choice of the players, of the numbers of games played etc.)
- execution of the simulation
- printing of the results
See the commented source code of to configure the simulation and lunch the program.