this repo has no description
1opam-version: "2.0"
2synopsis:
3 "A library implementing a simplex algorithm, in a functional style, for solving systems of linear inequalities"
4description:
5 "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."
6maintainer: ["OCamlPro <contact@ocamlpro.com>"]
7authors: [
8 "Mohamed Iguernlala <iguer@functori.com>"
9 "Hichem Ait El Hara <hichem.ait-el-hara@ocamlpro.com>"
10 "Steven de Oliveira <steven.de-oliveira@ocamlpro.com>"
11 "Guillaume Bury <guillaume.bury@ocamlpro.com>"
12 "Pierre Villemot <pierre.villemot@ocamlpro.com>"
13]
14license: "LGPL-2.1-or-later"
15homepage: "https://github.com/OCamlPro/ocplib-simplex"
16doc: "https://ocamlpro.github.io/ocplib-simplex"
17bug-reports: "https://github.com/OCamlPro/ocplib-simplex/issues"
18depends: [
19 "ocaml" {>= "4.02.0"}
20 "dune" {>= "2.0"}
21 "ocamlfind" {>= "1.9.1"}
22 "zarith" {with-test}
23 "logs" {>= "0.5.0"}
24 "odoc" {with-doc}
25]
26build: [
27 ["dune" "subst"] {dev}
28 [
29 "dune"
30 "build"
31 "-p"
32 name
33 "-j"
34 jobs
35 "@install"
36 "@runtest" {with-test}
37 "@doc" {with-doc}
38 ]
39]
40dev-repo: "git+https://github.com/OCamlPro/ocplib-simplex.git"
41url {
42 src:
43 "https://github.com/OCamlPro/ocplib-simplex/releases/download/v0.5.1/ocplib-simplex-0.5.1.tbz"
44 checksum: [
45 "sha256=a5c814be4d18e60c525d37c5b21e880b05b42e7c57b351aa3d20173521d513cf"
46 "sha512=2cf2936792c4429556fa7349069474056d5ae4ca0cf8ad3587880ebbc32cec39fad9b36df7c1ae18fa15f89fe4291bdb5a350b20d0cf84ce5ae651a77d0dd163"
47 ]
48}
49x-commit-hash: "12e7c1fd994d4c40cf7159008a67579f470df616"