go(stats): update FuncStats definition
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
a913bbb407
commit
49f5d93200
@ -11,10 +11,14 @@ import (
|
||||
"os"
|
||||
)
|
||||
|
||||
type BenchRound struct {
|
||||
Iteration int
|
||||
Results []float64
|
||||
}
|
||||
|
||||
type FuncStats struct {
|
||||
BenchName string
|
||||
Results []float64
|
||||
Iteration int
|
||||
Solution []BenchRound
|
||||
}
|
||||
|
||||
type Stats struct {
|
||||
@ -25,11 +29,10 @@ type Stats struct {
|
||||
Generations int
|
||||
}
|
||||
|
||||
func GetFuncStats(funcName string, results []float64, iteration int) FuncStats {
|
||||
func GetFuncStats(funcName string, solution []BenchRound) FuncStats {
|
||||
f := FuncStats{
|
||||
BenchName: funcName,
|
||||
Results: results,
|
||||
Iteration: iteration,
|
||||
Solution: solution,
|
||||
}
|
||||
|
||||
return f
|
||||
|
Loading…
Reference in New Issue
Block a user