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>" ] 4license: "LGPL-3.0-only WITH OCaml-LGPL-linking-exception" 5homepage: "http://ocaml-benchmark.forge.ocamlcore.org/" 6dev-repo: "git+https://github.com/Chris00/ocaml-benchmark.git" 7build: [ 8 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 9 ["ocaml" "setup.ml" "-build"] 10 ["ocaml" "setup.ml" "-doc"] {with-doc} 11] 12install: ["ocaml" "setup.ml" "-install"] 13remove: [ 14 ["ocamlfind" "remove" "benchmark"] 15] 16depends: [ 17 "ocaml" {>= "3.12.0" & < "5.0"} 18 "base-unix" 19 "ocamlfind" 20 "ocamlbuild" {build} 21] 22depopts: [ 23 "base-bigarray" 24 "pcre" 25] 26synopsis: "Benchmark running times of code." 27description: """ 28This module provides a set of tools to measure the running times of 29your functions and to easily compare the results. A statistical test 30is used to determine whether the results truly differ.""" 31flags: light-uninstall 32url { 33 src: 34 "https://github.com/Chris00/ocaml-benchmark/releases/download/1.4/benchmark-1.4.tar.gz" 35 checksum: [ 36 "sha256=82f1174df318331f0062b29fc8e1e891cfbf6a59132c862221c2f7d96c6f79e0" 37 "md5=d82b5522a6159de8909b6af553c08965" 38 ] 39}