this repo has no description
1opam-version: "2.0"
2maintainer: "Christophe Troestler <Christophe.Troestler@umons.ac.be>"
3authors: ["Christophe Troestler <Christophe.Troestler@umons.ac.be>"
4 "Doug Bagley"]
5tags: ["benchmark"]
6license: "LGPL-3.0-only WITH OCaml-LGPL-linking-exception"
7homepage: "https://github.com/Chris00/ocaml-benchmark"
8dev-repo: "git+https://github.com/Chris00/ocaml-benchmark.git"
9bug-reports: "https://github.com/Chris00/ocaml-benchmark/issues"
10doc: "https://Chris00.github.io/ocaml-benchmark/doc"
11build: [
12 [ "dune" "subst" ] {dev}
13 [ "dune" "build" "-p" name "-j" jobs ]
14]
15depends: [
16 "ocaml" {>= "3.12.0"}
17 "dune"
18 "base-unix"
19]
20synopsis: "Benchmark running times of code"
21description: """
22This module provides a set of tools to measure the running times of
23your functions and to easily compare the results. A statistical test
24is used to determine whether the results truly differ."""
25url {
26 src:
27 "https://github.com/Chris00/ocaml-benchmark/releases/download/1.6/benchmark-1.6.tbz"
28 checksum: [
29 "sha256=330d7d718c9afcc132e763d545813f07a4e7a825b0e6d133f4252b51f2809cf0"
30 "md5=425d16d91e11bc81e3d347884f8fe991"
31 ]
32}