this repo has no description
at main 1.1 kB view raw
1opam-version: "2.0" 2synopsis: "LP and MIP modeling in OCaml" 3description: """ 4This library is a modeling tool for Linear Programming (LP) and Mixed Integer Programming (MIP). 5The model can be exported to CPLEX LP file format, which can be loaded by various solvers. 6Importing models from LP file is also supported. 7""" 8maintainer: "Kosuke Tahara <ksk.tahara@gmail.com>" 9authors: [ "Kosuke Tahara <ksk.tahara@gmail.com>" ] 10license: "MIT" 11homepage: "https://github.com/ktahar/ocaml-lp" 12bug-reports: "https://github.com/ktahar/ocaml-lp/issues" 13dev-repo: "git+https://github.com/ktahar/ocaml-lp.git" 14depends: [ 15 "ocaml" {>= "4.08.0"} 16 "dune" {>= "2.2.0"} 17 "menhir" 18 "alcotest" {with-test} 19] 20build: [ 21 [ "dune" "build" "-p" name "-j" jobs ] 22 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test} 23] 24url { 25 src: "https://github.com/ktahar/ocaml-lp/archive/0.0.1.tar.gz" 26 checksum: [ 27 "md5=c9e78b48f2ce4479c895f560b978dad1" 28 "sha512=ce258f4b50d19ccce7e52f9242b3fbc5b4644a05f64fe42504ae5371b79353d1519b26fcbdf2930deff5f9676b6437d575f08723a39de20e9dfa063b6a35c209" 29 ] 30}