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" "-p" name "-j" jobs] {with-doc}
15]
16depends: [
17 "ocaml"
18 "base-bigarray"
19 "base-bytes"
20 "dune" {>= "1.1"}
21 "dune-configurator"
22 "cppo" {build}
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.3/lbfgs-0.9.3.tbz"
34 checksum: [
35 "sha256=6e5cc5b0cda7ce445e09bd7bf0f8e04ab02ce1f8059dd39872993cc4aec91253"
36 "sha512=a15380178305dc7a0002f761c6105b49078c27002da7cac2176736a74c494c187b6d141f0f312b2ecb6513044790880ae51e239e8b3b244cf012fc5ea75a7e7e"
37 ]
38}