Update simulation result handling and improve result processing

This commit is contained in:
2025-02-05 21:19:19 +01:00
parent 1e6fea8af7
commit 14063300f2
10 changed files with 311 additions and 351 deletions

View File

@@ -130,7 +130,7 @@ public final class Simulation {
for (var entry : this.states.entrySet())
nodes.put(entry.getKey(), entry.getValue().stats);
return new Result(this.seed, this.time, elapsed, nodes);
return new Result(this.seed, this.time, elapsed * 1e-6, nodes);
}
/**