palaestrai.simulation package¶
Submodules¶
palaestrai.simulation.vanilla_sim_controller module¶
- class palaestrai.simulation.vanilla_sim_controller.VanillaSimController(agent_conductor_ids: Sequence[str], environment_conductor_ids: Sequence[str], agents: Dict[str, Dict], mode: Mode, termination_conditions: Sequence[Dict[str, Any]], *args, **kwargs)[source]¶
Bases:
SimulationController
Scatter-gather simulation controller for agents
This simulation controller implements an execution strategy in which agents act in parallel.
- async advance() Tuple[SimulationFlowControl, SimulationFlowControl] [source]¶
Advances the whole simulation one time step
Advance is a simpler version of the ::.simulate method. While overwriting ::.simulate allows complete control over the loop, this method is called for every time step and can update agents and environments however they please. On call to this method implies that time has advanced.
- Returns:
Indiciates flow control for agents (first element of the tuple) and environments (second element). If one of the respective parts intends to change flow control (e.g., restarting the simulation or ending the current phase), this can be indicated in order to stop the main loop.
- Return type:
Tuple[SimulationFlowControl, SimulationFlowControl]