mirror of
https://github.com/gsi-upm/soil
synced 2024-11-13 06:52:28 +00:00
73282530fd
All test pass, except for the TestConfig suite, which is not too critical as the plan for this version onwards is to avoid configuration as much as possible. |
||
---|---|---|
.. | ||
rabbit_improved_sim.py | ||
rabbits_basic_sim.py | ||
README.md |
There are two similar implementations of this simulation.
basic
. Using simple primitesimproved
. Using more advanced features such as thetime
module to avoid unnecessary computations (i.e., skip steps), and generator functions.
The examples can be run directly in the terminal, and they accept command like arguments.
For example, to enable the CSV exporter and the Summary exporter, while setting max_time
to 100
and seed
to CustomSeed
:
python rabbit_agents.py --set max_time=100 --csv -e summary --set 'seed="CustomSeed"'
To learn more about how this functionality works, check out the soil.easy
function.