opam-version: "2.0" synopsis: "LP and MIP modeling in OCaml" description: """ This library helps the modeling of Linear Programming (LP) and Mixed Integer Programming (MIP) in OCaml. It supports the model with not only linear terms, but also quadratic terms. The model can be imported-from / exported-to CPLEX LP file format, which can be loaded by various solvers. It also has direct interfaces to some solvers. Currently supported are GLPK (GNU Linear Programming Kit) and Gurobi. """ maintainer: "Kosuke Tahara " authors: [ "Kosuke Tahara " ] license: "MIT" homepage: "https://github.com/ktahar/ocaml-lp" bug-reports: "https://github.com/ktahar/ocaml-lp/issues" dev-repo: "git+https://github.com/ktahar/ocaml-lp.git" depends: [ "ocaml" {>= "4.08.0"} "dune" {>= "2.2.0"} "menhir" "alcotest" {with-test} ] build: [ [ "dune" "build" "-p" name "-j" jobs ] [ "dune" "runtest" "-p" name "-j" jobs ] {with-test} ] url { src: "https://github.com/ktahar/ocaml-lp/archive/0.2.0.tar.gz" checksum: [ "md5=a2a388ad1bb4d1aa2e6238628488336a" "sha512=3d8e892d2e068f6574588cf80aaab53169bf1fc3b258721674bd28819d2f05f5f759ce89a5baab3336b0ff81c5e0508d010e70d2134d878b90f57ad9151a2ea3" ] }