-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpolynomial.cabal
73 lines (63 loc) · 2.55 KB
/
polynomial.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
name: polynomial
version: 0.7.3
stability: provisional
cabal-version: >= 1.8
build-type: Simple
author: James Cook <[email protected]>
maintainer: James Cook <[email protected]>
license: PublicDomain
homepage: https://github.com/mokus0/polynomial
category: Math, Numerical
synopsis: Polynomials
description: A type for representing polynomials, several functions
for manipulating and evaluating them, and several
interesting polynomial sequences.
tested-with: GHC == 7.8.4,
GHC == 7.10.3,
GHC == 8.0.2,
GHC == 8.1.*
source-repository head
type: git
location: git://github.com/mokus0/polynomial.git
Library
ghc-options: -Wall -fno-warn-name-shadowing
if impl(ghc >= 7.4)
ghc-options: -fwarn-unsafe
hs-source-dirs: src
exposed-modules: Math.Polynomial
Math.Polynomial.Bernstein
Math.Polynomial.Bernoulli
Math.Polynomial.Chebyshev
Math.Polynomial.Hermite
Math.Polynomial.Interpolation
Math.Polynomial.Lagrange
Math.Polynomial.Legendre
Math.Polynomial.Newton
Math.Polynomial.NumInstance
Math.Polynomial.Type
Math.Polynomial.VectorSpace
other-modules: Data.List.ZipSum
Data.VectorSpace.WrappedNum
Math.Polynomial.Pretty
build-depends: base >= 3 && <5,
deepseq,
vector,
vector-space,
vector-th-unbox >= 0.2.1
if impl(ghc < 7.10)
build-depends: pretty < 1.1.2, prettyclass
else
build-depends: pretty >= 1.1.2
Test-Suite polynomial-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Tests.hs
build-depends: base >= 3 && <5,
HUnit == 1.2.*,
polynomial,
QuickCheck >= 2,
test-framework,
test-framework-hunit,
test-framework-quickcheck2,
vector,
vector-space