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 ["dune" "subst"] {dev} 12 ["dune" "build" "-p" name "-j" jobs] 13 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 14] 15depends: [ 16 "ocaml" 17 "dune" 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. 24""" 25url { 26 src: 27 "https://github.com/Chris00/optimization1d/releases/download/0.6.1/optimization1d-0.6.1.tbz" 28 checksum: [ 29 "sha256=a811f5b1ea01ef0cf97e6c963e6f73c4c7d092faf6924597f294986d7a93310f" 30 "md5=70c43ba30a8290453430cd8d03736c66" 31 ] 32}