This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
chronozinc/main.go
2016-11-24 23:35:22 +01:00

24 lines
579 B
Go

package main
import (
"os"
"github.com/spf13/cobra"
)
var rootCmd = &cobra.Command{
Use: "chonozinc [description]",
Short: "Test and time your minizinc models!",
Long: `ChonoZinc is a small tool that wraps around mzn-fzn. It main purpose is to
test MiniZinc models using different solvers. It run your your model on all or
a sub-set of declared solvers and report on the statistics gathered. The data
gathered is saved in every stage.`,
Run: func(cmd *cobra.Command, args []string) {},
}
func main() {
if err := rootCmd.Execute(); err != nil {
os.Exit(-1)
}
}