-
Notifications
You must be signed in to change notification settings - Fork 6
/
splines.cabal
81 lines (72 loc) · 2.88 KB
/
splines.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
name: splines
version: 0.5
stability: provisional
cabal-version: >= 1.9.2
build-type: Simple
author: James Cook <[email protected]>
maintainer: James Cook <[email protected]>
license: PublicDomain
category: Graphics, Numerical, Math
synopsis: B-Splines, other splines, and NURBS.
description: This is a fairly simple implementation of a
general-purpose spline library, just to get the code
out there. Its interface is still mildly unstable and
may change (hopefully not drastically) as new needs or
better style ideas come up. Patches, suggestions
and/or feature requests are welcome.
tested-with: GHC == 7.0.4,
GHC == 7.2.2,
GHC == 7.4.2,
GHC == 7.6.3,
GHC == 7.8.4,
GHC == 7.10.1,
GHC == 7.11
source-repository head
type: git
location: git://github.com/mokus0/splines.git
Library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: Math.Spline
Math.Spline.BezierCurve
Math.Spline.BSpline
Math.Spline.BSpline.Reference
Math.Spline.Class
Math.Spline.Hermite
Math.Spline.ISpline
Math.Spline.Knots
Math.Spline.MSpline,
Math.NurbsSurface
Math.NURBS
other-modules: Math.Spline.BSpline.Internal
build-depends: base >= 3 && < 5,
containers,
polynomial,
vector >= 0.8,
vector-space
Test-Suite splines-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends: base >= 3 && <5,
containers,
polynomial,
splines,
test-framework,
test-framework-quickcheck2,
HUnit,
QuickCheck == 2.8.*,
vector,
vector-space
if impl(ghc == 7.0.*)
-- utf8-string-1.0.1 does not build on GHC 7.0.x
build-depends: utf8-string == 1
Benchmark splines-bench
type: exitcode-stdio-1.0
hs-source-dirs: benchmark
main-is: DeBoor.hs
build-depends: base >= 3 && < 5,
criterion,
polynomial,
splines,
vector