mirror of
https://github.com/gsi-upm/soil
synced 2024-11-14 07:22:29 +00:00
a1262edd2a
Treating time and conditions as the same entity was getting confusing, and it added a lot of unnecessary abstraction in a critical part (the scheduler). The scheduling queue now has the time as a floating number (faster), the agent id (for ties) and the condition, as well as the agent. The first three elements (time, id, condition) can be considered as the "key" for the event. To allow for agent execution to be "randomized" within every step, a new parameter has been added to the scheduler, which makes it add a random number to the key in order to change the ordering. `EventedAgent.received` now checks the messages before returning control to the user by default. |
||
---|---|---|
.. | ||
cars.py | ||
README.md |
This example can be run like with command-line options, like this:
python cars.py --level DEBUG -e summary --csv
This will set the CSV
(save the agent and model data to a CSV) and summary
(print the a summary of the data to stdout) exporters, and set the log level to DEBUG.