this repo has no description
at main 1.2 kB view raw
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 an interface to GLPK (GNU Linear Programming Kit). 8""" 9maintainer: "Kosuke Tahara <ksk.tahara@gmail.com>" 10authors: [ "Kosuke Tahara <ksk.tahara@gmail.com>" ] 11license: "MIT" 12homepage: "https://github.com/ktahar/ocaml-lp" 13bug-reports: "https://github.com/ktahar/ocaml-lp/issues" 14dev-repo: "git+https://github.com/ktahar/ocaml-lp.git" 15depends: [ 16 "ocaml" {>= "4.08.0"} 17 "dune" {>= "2.2.0"} 18 "menhir" 19 "alcotest" {with-test} 20] 21build: [ 22 [ "dune" "build" "-p" name "-j" jobs ] 23 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test} 24] 25url { 26 src: "https://github.com/ktahar/ocaml-lp/archive/0.1.0.tar.gz" 27 checksum: [ 28 "md5=21fef42d51a8194aaf6106df84a246c3" 29 "sha512=959cf32616fbce350c4a2ccb4deb562165d5a943de215595a78e2d897f475f7c01ea0c32221a0d71cfca62acd54c8714c12ece246e31b346a3b1b4435a7257c5" 30 ] 31}