Flow

A Flow describes the behavior of an automaton or Agent in a given State.

Arguments

  • 1st: A function(ev, agent, cell), where the arguments are: an Event that activated the Flow, the Automaton or Agent that owns the Flow, and the Cell over which the Flow will be evaluated.

Usage

Flow{function(ev, agent, cell)
    agent.value = agent.value + 2
end}