Compare commits

...

2 Commits

Author SHA1 Message Date
b981b962a2 upd loglevel flag desc 2024-12-05 01:37:32 +00:00
1ef43151b8 upd benchmark function names 2024-12-05 01:36:22 +00:00
10 changed files with 10 additions and 10 deletions

View File

@ -9,7 +9,7 @@ import (
//go:embed testdata/input.txt
var data []byte
func BenchmarkMain(b *testing.B) {
func BenchmarkSolve(b *testing.B) {
os.Stdout, _ = os.Open(os.DevNull)
Solve(data)
}

View File

@ -9,7 +9,7 @@ import (
//go:embed testdata/input.txt
var data []byte
func BenchmarkMain(b *testing.B) {
func BenchmarkSolve(b *testing.B) {
os.Stdout, _ = os.Open(os.DevNull)
Solve(data)
}

View File

@ -9,7 +9,7 @@ import (
//go:embed testdata/input.txt
var data []byte
func BenchmarkMain(b *testing.B) {
func BenchmarkSolve(b *testing.B) {
os.Stdout, _ = os.Open(os.DevNull)
Solve(data)
}

View File

@ -9,7 +9,7 @@ import (
//go:embed testdata/input.txt
var data []byte
func BenchmarkMain(b *testing.B) {
func BenchmarkSolve(b *testing.B) {
os.Stdout, _ = os.Open(os.DevNull)
Solve(data)
}

View File

@ -9,7 +9,7 @@ import (
//go:embed testdata/input.txt
var data []byte
func BenchmarkMain(b *testing.B) {
func BenchmarkSolve(b *testing.B) {
os.Stdout, _ = os.Open(os.DevNull)
Solve(data)
}

View File

@ -9,7 +9,7 @@ import (
//go:embed testdata/input.txt
var data []byte
func BenchmarkMain(b *testing.B) {
func BenchmarkSolve(b *testing.B) {
os.Stdout, _ = os.Open(os.DevNull)
Solve(data)
}

View File

@ -20,7 +20,7 @@ var files embed.FS
func main() {
filename := flag.String("f", "input.txt", "input file")
loglevel := flag.Int("l", int(log.InfoLevel), "log level (shorthand)")
loglevel := flag.Int("l", int(log.InfoLevel), "log level")
flag.Parse()
if slices.Contains(log.AllLevels, log.Level(*loglevel)) {

View File

@ -9,7 +9,7 @@ import (
//go:embed testdata/input.txt
var data []byte
func BenchmarkMain(b *testing.B) {
func BenchmarkSolve(b *testing.B) {
os.Stdout, _ = os.Open(os.DevNull)
Solve(data)
}

View File

@ -9,7 +9,7 @@ import (
//go:embed testdata/input.txt
var data []byte
func BenchmarkMain(b *testing.B) {
func BenchmarkSolve(b *testing.B) {
os.Stdout, _ = os.Open(os.DevNull)
Solve(data)
}

View File

@ -9,7 +9,7 @@ import (
//go:embed testdata/input.txt
var data []byte
func BenchmarkMain(b *testing.B) {
func BenchmarkSolve(b *testing.B) {
os.Stdout, _ = os.Open(os.DevNull)
Solve(data)
}