summaryrefslogtreecommitdiff
path: root/HSSL.cabal
blob: aac21554a0e69733d7fc9a6afa80b4edf4ad3d32 (plain)
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
71
72
73
74
Name:               HSSL
Version:            0.1
License:            GPL
License-file:       LICENSE
Author:             Alberto Ruiz
Maintainer:         Alberto Ruiz <aruiz@um.es>
Stability:          provisional
Homepage:           http://dis.um.es/~alberto/GSLHaskell
Synopsis:           Simple Scientific Library
Description:        A high level functional interface to some linear algebra computations
                    and other numerical routines, internally implemented using GSL, BLAS and LAPACK.
Category:           Numerical, Math
tested-with:        GHC ==6.6.1
Build-Depends:      base, haskell98
Extensions:         ForeignFunctionInterface
--ghc-options:        -Wall
ghc-options:        -O
hs-source-dirs:     lib
Exposed-modules:    Data.Packed.Internal,
                    Data.Packed.Internal.Common,
                    Data.Packed.Internal.Vector
                    Data.Packed.Internal.Matrix,
                    Data.Packed,
                    Data.Packed.Vector,
                    Data.Packed.Matrix,
                    GSL.Vector,
                    GSL.Matrix,
                    GSL.Differentiation,
                    GSL.Integration,
                    GSL.Fourier,
                    GSL.Polynomials,
                    GSL.Minimization,
                    GSL.Special,
                    GSL.Special.Internal,
                    GSL.Special.Gamma,
                    GSL.Special.Erf,
                    GSL.Special.Airy,
                    GSL.Special.Exp,
                    GSL.Special.Bessel,
                    GSL.Special.Clausen,
                    GSL.Special.Coulomb,
                    GSL.Special.Coupling,
                    GSL.Special.Dawson,
                    GSL.Special.Debye,
                    GSL.Special.Dilog,
                    GSL.Special.Elementary,
                    GSL.Special.Ellint,
                    GSL.Special.Expint,
                    GSL.Special.Fermi_dirac,
                    GSL.Special.Gegenbauer,
                    GSL.Special.Hyperg,
                    GSL.Special.Laguerre,
                    GSL.Special.Lambert,
                    GSL.Special.Pow_int,
                    GSL.Special.Psi,
                    GSL.Special.Synchrotron,
                    GSL.Special.Trig,
                    GSL.Special.Zeta,
                    GSL.Special.Log,
                    GSL.Special.Legendre,
                    GSL,
                    LinearAlgebra,
                    LinearAlgebra.LAPACK,
                    LinearAlgebra.Linear,
                    LinearAlgebra.Instances,
                    LinearAlgebra.Interface,
                    LinearAlgebra.Algorithms,
                    Graphics.Plot
C-sources:          lib/Data/Packed/Internal/aux.c,
                    lib/LinearAlgebra/LAPACK/lapack-aux.c,
                    lib/GSL/gsl-aux.c
extra-libraries:    gsl cblas lapack
cc-options:         -O4
ghc-prof-options:   -auto-all