Revision 1396,
382 bytes
checked in by wojtekp, 11 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Rev | Line | |
---|
[1207] | 1 | package simulator.stats; |
---|
| 2 | |
---|
| 3 | import java.util.List; |
---|
| 4 | import java.util.Map; |
---|
| 5 | |
---|
| 6 | import simulator.stats.implementation.MetricsStats; |
---|
| 7 | |
---|
[1299] | 8 | public interface MetricsCalculator { |
---|
[1207] | 9 | |
---|
[1299] | 10 | public List<MetricsStats> calulateMetrics(); |
---|
[1207] | 11 | |
---|
[1396] | 12 | public void addMetricsData(String resourceTypeName, DCwormsAccumulator resourceEnergyAccumulator); |
---|
[1207] | 13 | |
---|
[1396] | 14 | public Map<String, List<DCwormsAccumulator>> getMetricsData(); |
---|
[1207] | 15 | |
---|
| 16 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.