thalerjonathan / chimera

A library for pure functional Agent-Based Simulation in Haskell
GNU General Public License v3.0
13 stars 0 forks source link

Implement Actor Update-Strategy #5

Closed thalerjonathan closed 6 years ago

thalerjonathan commented 6 years ago

Every agent runs within its own thread but does not synchronise to a global simulation time and runs it's own local simulation time instead. Communication with other agents happens through STM queues. This is then in fact an implementation of the actor-model known from Erlang.

thalerjonathan commented 6 years ago

Closed for the same reason as in Issue #4 .