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 +