forked from mokus0/splines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
splines.cabal
70 lines (61 loc) · 2.47 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
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.
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.NURBS
other-modules: Math.Spline.BSpline.Internal
build-depends: base >= 3 && < 5,
containers,
polynomial,
vector >= 0.8,
vector-space,
vector-algorithms
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,
QuickCheck >= 2,
vector,
vector-space
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