go(plot): rename allStats -> algoStats
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2022-07-08 18:16:51 +02:00
parent 0131fccfba
commit 340c6e7238
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

@ -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 +