This commit is contained in:
parent
cbf47031f9
commit
e178ee3237
5
stats/doc.go
Normal file
5
stats/doc.go
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
// Copyright 2022 wanderer <a_mirre at utb dot cz>
|
||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
// Package stats provides functions for summarizing results.
|
||||||
|
package stats
|
17
stats/stats.go
Normal file
17
stats/stats.go
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
// 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
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user