math-optim/stats/stats.go
surtur e178ee3237
All checks were successful
continuous-integration/drone/push Build is passing
go: add stats package
2022-06-17 23:24:41 +02:00

18 lines
311 B
Go

// Copyright 2022 wanderer <a_mirre at utb dot cz>
// SPDX-License-Identifier: GPL-3.0-or-later
package stats
type FuncStats struct {
BenchName string
Results []float64
}
type Stats struct {
Algo string
Dimens int
BenchFuncStats []FuncStats
Iterations int
Generations int
}