]> gitweb.michael.orlitzky.com - numerical-analysis.git/blob - numerical-analysis.cabal
Implement Gaussian quadrature and test it.
[numerical-analysis.git] / numerical-analysis.cabal
1 name: numerical-analysis
2 version: 0.0.0
3 cabal-version: >= 1.8
4 author: Michael Orlitzky
5 maintainer: Michael Orlitzky <michael@orlitzky.com>
6 license: GPL-3
7 license-file: doc/LICENSE
8 bug-reports: mailto:michael@orlitzky.com
9 build-type: Simple
10 category: Text
11 synopsis:
12 A library of numerical analysis functions.
13 description:
14 Haskell implementations of algorithms from numerical
15 analysis. Includes fixed arbitrary-length vectors and
16 arbitrary-precision real numbers where possible.
17 data-files: makefile
18
19 library
20 exposed-modules:
21 Integration.Gaussian,
22 Integration.Simpson,
23 Integration.Trapezoid,
24 Linear.Iteration,
25 Linear.Matrix,
26 Linear.QR,
27 Linear.System,
28 Linear.Vector,
29 Misc,
30 Normed,
31 ODE.IVP,
32 Polynomials.Orthogonal,
33 Roots.Simple,
34 Roots.Fast
35
36 build-depends:
37 base >= 3 && < 5,
38 fixed-vector == 0.6.*,
39 numbers == 3000.2.*,
40 numeric-prelude == 0.4.*
41
42 hs-source-dirs:
43 src/
44
45 ghc-options:
46 -Wall
47 -fwarn-hi-shadowing
48 -fwarn-missing-signatures
49 -fwarn-name-shadowing
50 -fwarn-orphans
51 -fwarn-type-defaults
52 -fwarn-tabs
53 -fwarn-incomplete-record-updates
54 -fwarn-monomorphism-restriction
55 -fwarn-unused-do-bind
56 -rtsopts
57 -threaded
58 -O2
59 -optc-O3
60 -optc-march=native
61
62
63 test-suite doctests
64 type: exitcode-stdio-1.0
65 hs-source-dirs: test
66 main-is: Doctests.hs
67 build-depends:
68 base >= 3 && < 5,
69 -- Additional test dependencies.
70 doctest == 0.9.*,
71 filemanip == 0.3.6.*
72
73 -- It's not entirely clear to me why I have to reproduce all of this.
74 ghc-options:
75 -rtsopts
76 -threaded
77 -funbox-strict-fields
78 -fexcess-precision
79 -fno-spec-constr-count
80 -O2
81 -optc-O3
82 -optc-march=native
83
84
85 source-repository head
86 type: git
87 location: http://michael.orlitzky.com/git/numerical-analysis.git
88 branch: master