1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
opam-version: "2.0"
name: "ocplib-simplex"
version: "0.5"
synopsis:
"ocplib-simplex: A library implementing a simplex algorithm, in a functional style, for solving systems of linear inequalities"
description:
"ocplib-simplex 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."
maintainer: "OCamlPro <contact@ocamlpro.com>"
authors: [
"Mohamed Iguernlala <iguer@functori.com>"
"Hichem Ait El Hara <hichem.ait-el-hara@ocamlpro.com>"
"Steven de Oliveira <steven.de-oliveira@ocamlpro.com>"
"Guillaume Bury <guillaume.bury@ocamlpro.com>"
]
license: "LICENSE"
homepage: "https://github.com/OCamlPro/ocplib-simplex"
doc: "https://github.com/OCamlPro/ocplib-simplex"
bug-reports: "https://github.com/OCamlPro/ocplib-simplex/issues"
depends: [
"base-bigarray" {= "base"}
"base-threads" {= "base"}
"base-unix" {= "base"}
"conf-gmp" {= "4" & with-test}
"dune" {= "3.14.2"}
"logs" {= "0.7.0"}
"ocamlbuild" {= "0.14.3"}
"ocamlfind" {= "1.9.6"}
"topkg" {= "1.0.7"}
"zarith" {= "1.13" & with-test}
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/OCamlPro/ocplib-simplex.git"
|