math-optim/report/report.go
surtur 7b22723cb0
All checks were successful
continuous-integration/drone/push Build is passing
go: standardise output dirs for reporting material
2022-07-12 16:56:49 +02:00

42 lines
677 B
Go

// Copyright 2022 wanderer <a_mirre at utb dot cz>
// SPDX-License-Identifier: GPL-3.0-or-later
package report
//go:generate go run gen.go
import (
"fmt"
"io"
"log"
"os"
)
const (
outPrefix = "out/"
picsDir = "pics/"
)
// GetPicsDirPrefix returns the path to the folder meant for plot pics.
func GetPicsDir() string {
return outPrefix + picsDir
}
// Print prints stats in a report format.
func Print() {
fmt.Fprint(os.Stderr, "\n* printing the report...\n\n")
// when run from the repo root
fname := "report/report.tex"
fh, err := os.Open(fname)
if err != nil {
log.Fatal(err)
}
_, err = io.Copy(os.Stdout, fh)
if err != nil {
log.Fatal(err)
}
}