9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-26 18:49:06 +00:00

Loads of bugfixes & Seed cohesion

This commit is contained in:
Daniel Mills
2020-07-29 22:31:16 -04:00
parent 84e81e9ce0
commit 36e5fec284
26 changed files with 739 additions and 118 deletions

View File

@@ -25,4 +25,9 @@ public class IrisMetrics
perSecond = new RollingSequence(5);
loss = new RollingSequence(memory);
}
public double getSpeed()
{
return (double) Iris.instance.hits.getAverage() / (double) total.getAverage();
}
}