···11+opam-version: "2.0"
22+synopsis:
33+ "A library implementing a simplex algorithm, in a functional style, for solving systems of linear inequalities"
44+description:
55+ "This library is a (fully) functional OCaml implementation of the simplex algorithm for solving systems of linear inequalities. The implementation is incremental and backtrackable. It is able to extract unsat-cores for unsatisfiable problems. Versions > 0.1 also support linear optimization."
66+maintainer: "OCamlPro <contact@ocamlpro.com>"
77+authors: [
88+ "Mohamed Iguernlala <mohamed.iguernlala@ocamlpro.com>"
99+ "Hichem Ait El Hara <hichem.ait-el-hara@ocamlpro.com>"
1010+ "Steven de Oliveira <steven.de-oliveira@ocamlpro.com>"
1111+ "Guillaume Bury <guillaume.bury@ocamlpro.com>"
1212+]
1313+license: "LGPL-2.1-or-later"
1414+homepage: "https://github.com/OCamlPro-Iguernlala/ocplib-simplex"
1515+bug-reports: "https://github.com/OCamlPro-Iguernlala/ocplib-simplex/issues"
1616+depends: [
1717+ "ocaml" {>= "4.01.0"}
1818+ "ocamlfind" {build}
1919+ "conf-autoconf" {build}
2020+ "num"
2121+]
2222+build: [
2323+ ["autoconf"]
2424+ ["./configure" "-prefix" "%{prefix}%"]
2525+ [make]
2626+]
2727+install: [make "install"]
2828+dev-repo: "git+https://github.com/OCamlPro-Iguernlala/ocplib-simplex.git"
2929+url {
3030+ src:
3131+ "https://github.com/OCamlPro/ocplib-simplex/archive/refs/tags/v0.4.1.tar.gz"
3232+ checksum: [
3333+ "md5=6b394721cace379ee728e5a658183e23"
3434+ "sha512=6436a904f4e0ec4efa13592185764b58142296816855562d9c2c6d360b64ab554bbd95314976e0462fbb2ed145f8915fd9c2f63f7bae66063efb4c51f74f3edb"
3535+ ]
3636+}