Skip to content

Commit

Permalink
Fix for summary.
Browse files Browse the repository at this point in the history
  • Loading branch information
Smoren committed May 14, 2024
1 parent 1a1e007 commit 076ff8a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/analysis/summary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,13 +209,13 @@ export class SummaryManager implements SummaryManagerInterface {

this.stepManager.buffer.LINKS_CREATED_MEAN = [...this.stepManager.buffer.LINKS_CREATED];
this.stepManager.buffer.LINKS_DELETED_MEAN = [...this.stepManager.buffer.LINKS_DELETED];
this.finishMean('LINKS_CREATED_MEAN', this.stepManager.buffer.ATOMS_COUNT);
this.finishMean('LINKS_DELETED_MEAN', this.stepManager.buffer.ATOMS_COUNT);
this.finishMean('LINKS_CREATED_MEAN', this.stepManager.buffer.LINKS_COUNT);
this.finishMean('LINKS_DELETED_MEAN', this.stepManager.buffer.LINKS_COUNT);

this.stepManager.buffer.LINKS_TYPE_CREATED_MEAN = [...this.stepManager.buffer.LINKS_TYPE_CREATED];
this.stepManager.buffer.LINKS_TYPE_DELETED_MEAN = [...this.stepManager.buffer.LINKS_TYPE_DELETED];
this.finishArrayMean('LINKS_TYPE_CREATED_MEAN', this.stepManager.buffer.ATOMS_TYPE_COUNT);
this.finishArrayMean('LINKS_TYPE_DELETED_MEAN', this.stepManager.buffer.ATOMS_TYPE_COUNT);
this.finishArrayMean('LINKS_TYPE_CREATED_MEAN', this.stepManager.buffer.ATOMS_TYPE_LINKS_COUNT);
this.finishArrayMean('LINKS_TYPE_DELETED_MEAN', this.stepManager.buffer.ATOMS_TYPE_LINKS_COUNT);

this.updateFpsMetrics();
this.stepManager.save();
Expand Down

0 comments on commit 076ff8a

Please sign in to comment.