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