this repo has no description
1opam-version: "2.0"
2maintainer: "Christophe.Troestler@umons.ac.be"
3authors: ["Christophe Troestler <Christophe.Troestler@umons.ac.be>"]
4homepage: "https://github.com/Chris00/optimization1d"
5license: "LGPL-3.0-only WITH OCaml-LGPL-linking-exception"
6dev-repo: "git+https://github.com/Chris00/optimization1d.git"
7bug-reports: "https://github.com/Chris00/optimization1d/issues"
8doc: "https://Chris00.github.io/optimization1d/doc"
9tags: ["optimization"]
10build: [
11 ["jbuilder" "subst" "-p" name] {dev}
12 ["jbuilder" "build" "-p" name "-j" jobs]
13 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test}
14]
15depends: [
16 "ocaml"
17 "jbuilder" {>= "1.0+beta7"}
18]
19synopsis: "Find extrema of 1D functions"
20description: """
21This library provides two modules Min1D and Max1D to seek the minimum
22and maximum of functions float → float. Pure OCaml code with no
23external dependencies."""
24url {
25 src:
26 "https://github.com/Chris00/optimization1d/releases/download/0.6/optimization1d-0.6.tbz"
27 checksum: [
28 "sha256=e67ad19f77796e72266527e85c1c0b34eb4476821c2e6a68666277ad9adf6f80"
29 "md5=57ed7580362d6f3788d5dd2b6b8dd49f"
30 ]
31}