forked from martinra/hflint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hflint.cabal
215 lines (188 loc) · 4.45 KB
/
hflint.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
name: hflint
version: 0.0.1
synopsis: Haskell binding to the FLINT library
description: Haskell binding to the FLINT library. This
version is compatible with FLINT 2.5.
.
Since FLINT uses GMP, this library features
infrequent but serious errors with a ghc that
has been compiled with the default integer-gmp.
See documentation of hmpfr for a description of
possible solutions. GHC 7.10 fixes this bug.
category: Data, Math
license: GPL-3
license-file: LICENSE
stability: experimental
tested-with: GHC==8.0.2
author: Martin Raum <[email protected]>
maintainer: Martin Raum <[email protected]>
build-type: Simple
cabal-version: >= 1.16
data-files: README.md
library
exposed-modules:
HFlint.FMPQ
HFlint.FMPQMat
HFlint.FMPQPoly
HFlint.FMPZ
HFlint.FMPZPoly
HFlint.FMPZPolyFactor
HFlint.NF
HFlint.NMod
HFlint.Primes
HFlint.FMPQ.FFI
HFlint.FMPQMat.FFI
HFlint.FMPQPoly.FFI
HFlint.FMPZ.FFI
HFlint.FMPZPoly.FFI
HFlint.FMPZPolyFactor.FFI
HFlint.NF.FFI
HFlint.NMod.FFI
HFlint.Primes.FFI
HFlint.Internal
other-modules:
HFlint.FMPQ.Algebra
HFlint.FMPQ.Arithmetic
HFlint.FMPQ.Base
HFlint.FMPQ.Reduction
HFlint.FMPQ.Tasty.QuickCheck
HFlint.FMPQ.Tasty.SmallCheck
HFlint.FMPQMat.Base
HFlint.FMPQPoly.Algebra
HFlint.FMPQPoly.Base
HFlint.FMPZ.Algebra
HFlint.FMPZ.Arithmetic
HFlint.FMPZ.Base
HFlint.FMPZ.Limbs
HFlint.FMPZ.Reduction
HFlint.FMPZ.Reduction.FMPZCRT
HFlint.FMPZ.Reduction.FMPZCRTFlintLimb
HFlint.FMPZ.Tasty.QuickCheck
HFlint.FMPZ.Tasty.SmallCheck
HFlint.FMPZPoly.Algebra
HFlint.FMPZPoly.Base
HFlint.FMPZPoly.Special
HFlint.NF.Algebra
HFlint.NF.Arithmetic
HFlint.NF.Base
HFlint.NF.Context
HFlint.NMod.Algebra
HFlint.NMod.Arithmetic
HFlint.NMod.Base
HFlint.NMod.Context
HFlint.NMod.Reduction
HFlint.NMod.Tasty.QuickCheck
HFlint.NMod.Tasty.SmallCheck
HFlint.NMod.Vector
HFlint.Primes.Base
HFlint.Internal.Context
HFlint.Internal.Flint
HFlint.Internal.FlintPrim
HFlint.Internal.FlintWithContext
HFlint.Internal.Lift
HFlint.Internal.LiftCtx
HFlint.Internal.LiftPrim
HFlint.Internal.Lift.Utils
HFlint.Internal.Utils
HFlint.Internal.TH
HFlint.Utility.Prelude
default-extensions:
ConstraintKinds
, FlexibleContexts
, FlexibleInstances
, GeneralizedNewtypeDeriving
, MultiParamTypeClasses
, RankNTypes
, StandaloneDeriving
, TypeFamilies
build-depends:
base
, algebraic-structures
, composition
, containers
, data-default
, deepseq
, dlist
, safe-exceptions
, monad-loops
, mono-traversable
, mtl
, QuickCheck
, reflection
, safe
, smallcheck
, template-haskell
, transformers
, vector
, vector-th-unbox
extra-libraries:
flint,
gf2x,
gmp,
mpfr,
ntl
include-dirs:
csrc
includes:
flint/flint.h
flint/fmpq.h
flint/fmpq_poly.h
flint/fmpz.h
flint_define_additionals.h
flint_define_wrappers.h
install-includes:
flint_define_additionals.h
flint_define_wrappers.h
c-sources:
csrc/flint_define_additionals.c
csrc/flint_define_wrappers.c
GHC-options:
-Wall
-fno-warn-orphans
-fsimpl-tick-factor=500
cpp-options:
-fPIC
hs-source-dirs: src
default-language: Haskell2010
build-tools: hsc2hs
test-suite test-hflint
main-is: HFlint/Test.hs
default-extensions:
ConstraintKinds
, FlexibleContexts
, FlexibleInstances
, GeneralizedNewtypeDeriving
, MultiParamTypeClasses
, RankNTypes
, StandaloneDeriving
, TypeFamilies
build-depends:
base
, hflint
, algebraic-structures
, base
, composition
, containers
, data-default
, deepseq
, dlist
, safe-exceptions
, monad-loops
, mono-traversable
, mtl
, QuickCheck
, reflection
, safe
, smallcheck
, split
, tasty
, tasty-hunit
, tasty-quickcheck
, tasty-smallcheck
, template-haskell
, transformers
, vector
, vector-th-unbox
hs-source-dirs: test
default-language: Haskell2010
type: exitcode-stdio-1.0