this repo has no description
1opam-version: "2.0"
2synopsis: "LP and MIP modeling in OCaml"
3description: """
4This library helps the modeling of Linear Programming (LP) and Mixed Integer Programming (MIP) in OCaml.
5It supports the model with not only linear terms, but also quadratic terms.
6The model can be imported-from / exported-to CPLEX LP file format, which can be loaded by various solvers.
7It also has direct interfaces to some solvers.
8Currently supported are GLPK (GNU Linear Programming Kit) and Gurobi.
9"""
10maintainer: "Kosuke Tahara <ksk.tahara@gmail.com>"
11authors: [ "Kosuke Tahara <ksk.tahara@gmail.com>" ]
12license: "MIT"
13homepage: "https://github.com/ktahar/ocaml-lp"
14bug-reports: "https://github.com/ktahar/ocaml-lp/issues"
15dev-repo: "git+https://github.com/ktahar/ocaml-lp.git"
16depends: [
17 "ocaml" {>= "4.08.0"}
18 "dune" {>= "2.2.0"}
19 "menhir" {>= "20180523"}
20 "alcotest" {with-test}
21]
22build: [
23 [ "dune" "build" "-p" name "-j" jobs ]
24 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
25]
26url {
27 src: "https://github.com/ktahar/ocaml-lp/archive/0.4.0.tar.gz"
28 checksum: [
29 "md5=92a179cb5ff0feb598b9cc404779f6dc"
30 "sha512=c34ee01cc8ffa980b7e94a951179292a40df98fb4afa6d0d7bbeb6ae0a8d60c3fbfc031a634e2ee74236b493f38ee548bf22acfb6b5c47baccbbf2778ff89c7c"
31 ]
32}