uzh / signal-collect

A framework for scalable graph computing.
www.signalcollect.com
Apache License 2.0
148 stars 32 forks source link

Multiple executions should allow for an easy way to access the stats of the last execution. #144

Open pstutz opened 11 years ago

pstutz commented 11 years ago

Currently the aggregate of all statistics since the beginning is returned.

Potential way to implement: On ExecutionStatistics: def deltaToPrevious(es: ExecutionStatistics) { ExecutionStatistics(signalSteps - es.signalSteps, ...) }