-
Notifications
You must be signed in to change notification settings - Fork 6
/
ocplib-simplex.opam
42 lines (42 loc) · 1.38 KB
/
ocplib-simplex.opam
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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "dev"
synopsis:
"A library implementing a simplex algorithm, in a functional style, for solving systems of linear inequalities"
description:
"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 <[email protected]>"]
authors: [
"Mohamed Iguernlala <[email protected]>"
"Hichem Ait El Hara <[email protected]>"
"Steven de Oliveira <[email protected]>"
"Guillaume Bury <[email protected]>"
"Pierre Villemot <[email protected]>"
]
license: "LGPL-2.1-or-later"
homepage: "https://github.com/OCamlPro/ocplib-simplex"
doc: "https://ocamlpro.github.io/ocplib-simplex"
bug-reports: "https://github.com/OCamlPro/ocplib-simplex/issues"
depends: [
"ocaml" {>= "4.02.0"}
"dune" {>= "3.0" & >= "3.0"}
"ocamlfind" {>= "1.9.1"}
"zarith" {with-test}
"logs" {>= "0.5.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/OCamlPro/ocplib-simplex.git"