State data is currently collected into one huge json object and dumped in one go at the end of the simulation.
It would be nice if output were incremental, since
it means there is at least some output if the program crashes
for frequent data collection memory use can become an issue.
Potential problems:
efficiency (needs to be tested)
incremental output of a single json object might not be supported by jansson, so either the output format would have to change (multiple json objects instead of one big array) or be faked.
State data is currently collected into one huge json object and dumped in one go at the end of the simulation.
It would be nice if output were incremental, since
Potential problems: