]> gitweb.michael.orlitzky.com - numerical-analysis.git/blob - numerical-analysis.cabal
Add FixedVector and Matrix to the compiled modules.
[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 for UMBC's MATH620.
13 description:
14 Haskell implementations of algorithms from UMBC's Numerical
15 Analysis course, MATH620.
16 data-files: makefile
17
18 library
19 exposed-modules: Integration.Simpson, Integration.Trapezoid, FixedVector,
20 Matrix, Misc, ODE.IVP, Roots.Simple, Roots.Fast
21
22 build-depends:
23 base >= 3 && < 5,
24 fixed-vector == 0.1.*,
25 numbers == 3000.1.*,
26 vector == 0.10.*
27
28 hs-source-dirs:
29 src/
30
31 ghc-options:
32 -Wall
33 -fwarn-hi-shadowing
34 -fwarn-missing-signatures
35 -fwarn-name-shadowing
36 -fwarn-orphans
37 -fwarn-type-defaults
38 -fwarn-tabs
39 -fwarn-incomplete-record-updates
40 -fwarn-monomorphism-restriction
41 -fwarn-unused-do-bind
42 -rtsopts
43 -threaded
44 -O2
45 -optc-O3
46 -optc-march=native
47
48
49 test-suite doctests
50 type: exitcode-stdio-1.0
51 hs-source-dirs: test
52 main-is: Doctests.hs
53 build-depends:
54 base >= 3 && < 5,
55 -- Additional test dependencies.
56 doctest == 0.9.*,
57 filemanip == 0.3.6.*
58
59 -- It's not entirely clear to me why I have to reproduce all of this.
60 ghc-options:
61 -rtsopts
62 -threaded
63 -funbox-strict-fields
64 -fexcess-precision
65 -fno-spec-constr-count
66 -O2
67 -optc-O3
68 -optc-march=native
69
70
71 source-repository head
72 type: git
73 location: http://git.michael.orlitzky.com/umbc/math620.git
74 branch: master