this repo has no description
1opam-version: "2.0" 2synopsis: "LP and MIP modeling in OCaml (Gurobi interface)" 3description: """ 4This library helps the modeling of Linear Programming (LP) and Mixed Integer Programming (MIP) in OCaml. 5This package is an optional solver-interface to Gurobi. 6""" 7maintainer: "Kosuke Tahara <ksk.tahara@gmail.com>" 8authors: [ "Kosuke Tahara <ksk.tahara@gmail.com>" ] 9license: "MIT" 10homepage: "https://github.com/ktahar/ocaml-lp" 11bug-reports: "https://github.com/ktahar/ocaml-lp/issues" 12dev-repo: "git+https://github.com/ktahar/ocaml-lp.git" 13depends: [ 14 "ocaml" {>= "4.08.0"} 15 "dune" {>= "2.2.0"} 16 "lp" {= version} 17 "ctypes" 18 "ctypes-foreign" 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.3.0.tar.gz" 27 checksum: [ 28 "md5=dad8525a3cef45b161698b17702a29a7" 29 "sha512=e8a36c0a87a763af6674db472dc8cf64a456eeb481cd215d9b08fc0eb59cba7e65c8df8d3d29597f65c14af63d1a93ae4843506f05aba69884006b6452c1a690" 30 ] 31}