From 340c6e723882aae5673d2b96e59c770839ce1fbc Mon Sep 17 00:00:00 2001 From: surtur Date: Fri, 8 Jul 2022 18:16:51 +0200 Subject: [PATCH] go(plot): rename allStats -> algoStats --- algo/plot.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/algo/plot.go b/algo/plot.go index 85ad9f9..e363aa3 100644 --- a/algo/plot.go +++ b/algo/plot.go @@ -17,11 +17,11 @@ import ( const preferredFontStyle = "Mono" -func plotAllDims(allStats []stats.Stats, fPrefix, fExt string) { +func plotAllDims(algoStats []stats.Stats, fPrefix, fExt string) { pWidth := 13 * vg.Centimeter pHeight := 13 * vg.Centimeter - for _, s := range allStats { + for _, s := range algoStats { p := plot.New() p.Title.Text = s.Algo + ", D=" + fmt.Sprint(s.Dimens) + ", func=" + s.BenchFuncStats[0].BenchName +