]> gitweb.michael.orlitzky.com - numerical-analysis.git/blob - numerical-analysis.cabal
Add the (in progress) FEM.R1 module.
[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 FEM.R1
22 Integration.Gaussian,
23 Integration.Simpson,
24 Integration.Trapezoid,
25 Linear.Iteration,
26 Linear.Matrix,
27 Linear.QR,
28 Linear.System,
29 Linear.Vector,
30 Misc,
31 Normed,
32 ODE.IVP,
33 Polynomials.Orthogonal,
34 Roots.Simple,
35 Roots.Fast
36
37 build-depends:
38 base >= 3 && < 5,
39 fixed-vector == 0.6.*,
40 numbers == 3000.2.*,
41 numeric-prelude == 0.4.*
42
43 hs-source-dirs:
44 src/
45
46 ghc-options:
47 -Wall
48 -fwarn-hi-shadowing
49 -fwarn-missing-signatures
50 -fwarn-name-shadowing
51 -fwarn-orphans
52 -fwarn-type-defaults
53 -fwarn-tabs
54 -fwarn-incomplete-record-updates
55 -fwarn-monomorphism-restriction
56 -fwarn-unused-do-bind
57 -rtsopts
58 -threaded
59 -O2
60 -optc-O3
61 -optc-march=native
62
63
64 test-suite doctests
65 type: exitcode-stdio-1.0
66 hs-source-dirs: test
67 main-is: Doctests.hs
68 build-depends:
69 base >= 3 && < 5,
70 -- Additional test dependencies.
71 doctest == 0.9.*,
72 filemanip == 0.3.6.*
73
74 -- It's not entirely clear to me why I have to reproduce all of this.
75 ghc-options:
76 -rtsopts
77 -threaded
78 -funbox-strict-fields
79 -fexcess-precision
80 -fno-spec-constr-count
81 -O2
82 -optc-O3
83 -optc-march=native
84
85
86 source-repository head
87 type: git
88 location: http://michael.orlitzky.com/git/numerical-analysis.git
89 branch: master