Skip to content

Commit

Permalink
Summary fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Smoren committed May 15, 2024
1 parent 27e1d98 commit 8bbabf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/analysis/summary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ export class SummaryManager implements SummaryManagerInterface {

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_LINKS_COUNT);
this.finishArrayMean('LINKS_TYPE_DELETED_MEAN', this.stepManager.buffer.ATOMS_TYPE_LINKS_COUNT);
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.updateFpsMetrics();
this.stepManager.save();
Expand Down

0 comments on commit 8bbabf7

Please sign in to comment.