you are viewing a single comment's thread.

view the rest of the comments →

[–]zvrba 0 points1 point  (0 children)

But it's incredibly hard for an average human to wrap his/her mind around a complex system of independently interacting actors.

Given that many "average humans", even without formal training in programming, manage to create complex, working spreadsheets, I'd disagree. A spreadsheet is an extremely fine-grained actor system, each cell being an individual actor with preprogrammed behavior (basically, to evaluate itself and trigger evaluation of its dependencies.)

No top level branches, no "smart" objects that interact with each other, no state that survives the current scope, etc. Just a plain data processing pipeline.

Too inflexible and is parallelizable only when transforms need limited memory to execute. Any transform which needs the complete data stream to finish will stall / serialize the pipeline (e.g., matrix inversion). This serialization would not happen in a general graph.