math-optim/stats/stats.go

66 lines
1.2 KiB
Go
Raw Normal View History

2022-06-17 23:24:41 +02:00
// Copyright 2022 wanderer <a_mirre at utb dot cz>
// SPDX-License-Identifier: GPL-3.0-or-later
package stats
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
"os"
)
2022-06-18 00:51:51 +02:00
type BenchRound struct {
Iteration int
Results []float64
}
2022-06-17 23:24:41 +02:00
type FuncStats struct {
BenchName string
2022-06-18 00:51:51 +02:00
Solution []BenchRound
2022-06-17 23:24:41 +02:00
}
type Stats struct {
Algo string
Dimens int
BenchFuncStats []FuncStats
Iterations int
Generations int
}
2022-06-18 00:51:51 +02:00
func GetFuncStats(funcName string, solution []BenchRound) FuncStats {
f := FuncStats{
BenchName: funcName,
2022-06-18 00:51:51 +02:00
Solution: solution,
}
return f
}
func GetStats(algo string, dimens int, benchFuncStats []FuncStats, iterations, generations int) Stats {
s := Stats{
Algo: algo,
Dimens: dimens,
BenchFuncStats: benchFuncStats,
Iterations: iterations,
Generations: generations,
}
return s
}
func SaveStats(stats Stats) {
if j, err := json.MarshalIndent(stats, "", " "); err != nil {
log.Fatal(err)
} else {
fmt.Fprintln(os.Stderr, j)
log.Println("saving json stats to: test.json")
if err = ioutil.WriteFile("test.json", j, 0o600); err != nil {
log.Println("error saving stats to file:", err)
}
}
}