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: "https://github.com/Chris00/L-BFGS-ocaml" 6dev-repo: "git+https://github.com/Chris00/L-BFGS-ocaml.git" 7bug-reports: "https://github.com/Chris00/L-BFGS-ocaml/issues" 8doc: "https://Chris00.github.io/L-BFGS-ocaml/doc" 9tags: [ "science" "numerics" "optimization" "minimization" "maximization" 10 "bound-constrained" "large-scale" ] 11build: [ 12 ["dune" "subst"] {dev} 13 ["dune" "build" "-p" name "-j" jobs] 14 ["dune" "build" "@doc"] {with-doc} 15] 16depends: [ 17 "ocaml" 18 "base-bigarray" 19 "base-bytes" 20 "camlp4" {build} 21 "dune" 22 "dune-configurator" 23 "conf-gfortran" {build} 24 "lacaml" {with-test} 25] 26synopsis: "Bound-constrainted optimization in many variables" 27description: """ 28This library provide an algorithm to minimize and maximize functions 29of many variables on bounded or unbounded domains. This is a binding 30to L-BFGS-B, a library for Large-scale Bound-constrained Optimization.""" 31url { 32 src: 33 "https://github.com/Chris00/L-BFGS-ocaml/releases/download/0.9.2/lbfgs-0.9.2.tbz" 34 checksum: [ 35 "sha256=0691c161ddf4c239f6cac42721dcf1660150da84c560c604e41616d9b692d92a" 36 "md5=29e71dd25f6b67b26658a8cc38783fc1" 37 ] 38}