-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvertexenum.cabal
98 lines (94 loc) · 3.59 KB
/
vertexenum.cabal
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
cabal-version: 2.2
name: vertexenum
version: 1.0.0.0
synopsis: Vertex enumeration
description: Vertex enumeration of convex polytopes given by linear inequalities.
homepage: https://github.com/stla/vertexenum#readme
license: GPL-3.0-only
license-file: LICENSE
author: Stéphane Laurent
maintainer: [email protected]
copyright: 2023-2024 Stéphane Laurent
category: Math, Geometry
build-type: Simple
extra-source-files: README.md
extra-doc-files: CHANGELOG.md
library
hs-source-dirs: src
exposed-modules: Geometry.VertexEnum
other-modules: Geometry.VertexEnum.Constraint
, Geometry.VertexEnum.Internal
, Geometry.VertexEnum.LinearCombination
, Geometry.VertexEnum.CVertexEnum
, Geometry.VertexEnum.VertexEnum
build-depends: base >= 4.7 && < 5
, simplex-method >= 0.2.0.0 && < 0.3
, containers >= 0.6.5.1 && < 0.7
, monad-logger >= 0.3.40 && < 0.4
, vector-space >= 0.15 && < 0.17
, extra >= 1.7 && < 1.8
other-extensions: ForeignFunctionInterface
, TypeFamilies
, InstanceSigs
default-language: Haskell2010
include-dirs: C
C-sources: C/libqhull_r.c
, C/geom_r.c
, C/geom2_r.c
, C/global_r.c
, C/io_r.c
, C/mem_r.c
, C/merge_r.c
, C/poly_r.c
, C/poly2_r.c
, C/qset_r.c
, C/random_r.c
, C/usermem_r.c
, C/userprintf_r.c
, C/user_r.c
, C/stat_r.c
, C/halfspaces.c
, C/utils.c
install-includes: C/libqhull_r.h
, C/geom_r.h
, C/io_r.h
, C/mem_r.h
, C/merge_r.h
, C/poly_r.h
, C/qhull_ra.h
, C/qset_r.h
, C/random_r.h
, C/user_r.h
, C/stat_r.h
, C/utils.h
ghc-options: -Wall
-Wcompat
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wmissing-export-lists
-Wmissing-home-modules
-Wpartial-fields
-Wredundant-constraints
test-suite unit-tests
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: tests/
other-modules: Approx
Build-Depends: base >= 4.7 && < 5
, tasty >= 1.4 && < 1.5
, tasty-hunit >= 0.10 && < 0.11
, vertexenum
Default-Language: Haskell2010
ghc-options: -Wall
-Wcompat
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wmissing-export-lists
-Wmissing-home-modules
-Wpartial-fields
-Wredundant-constraints
source-repository head
type: git
location: https://github.com/stla/vertexenum