summaryrefslogtreecommitdiff
path: root/HSSL.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'HSSL.cabal')
-rw-r--r--HSSL.cabal92
1 files changed, 47 insertions, 45 deletions
diff --git a/HSSL.cabal b/HSSL.cabal
index aac2155..43569fe 100644
--- a/HSSL.cabal
+++ b/HSSL.cabal
@@ -1,4 +1,4 @@
1Name: HSSL 1Name: hssl
2Version: 0.1 2Version: 0.1
3License: GPL 3License: GPL
4License-file: LICENSE 4License-file: LICENSE
@@ -9,6 +9,8 @@ Homepage: http://dis.um.es/~alberto/GSLHaskell
9Synopsis: Simple Scientific Library 9Synopsis: Simple Scientific Library
10Description: A high level functional interface to some linear algebra computations 10Description: A high level functional interface to some linear algebra computations
11 and other numerical routines, internally implemented using GSL, BLAS and LAPACK. 11 and other numerical routines, internally implemented using GSL, BLAS and LAPACK.
12 .
13 More information: <http://dis.um.es/~alberto/GSLHaskell>
12Category: Numerical, Math 14Category: Numerical, Math
13tested-with: GHC ==6.6.1 15tested-with: GHC ==6.6.1
14Build-Depends: base, haskell98 16Build-Depends: base, haskell98
@@ -23,52 +25,52 @@ Exposed-modules: Data.Packed.Internal,
23 Data.Packed, 25 Data.Packed,
24 Data.Packed.Vector, 26 Data.Packed.Vector,
25 Data.Packed.Matrix, 27 Data.Packed.Matrix,
26 GSL.Vector, 28 Numeric.GSL.Vector,
27 GSL.Matrix, 29 Numeric.GSL.Matrix,
28 GSL.Differentiation, 30 Numeric.GSL.Differentiation,
29 GSL.Integration, 31 Numeric.GSL.Integration,
30 GSL.Fourier, 32 Numeric.GSL.Fourier,
31 GSL.Polynomials, 33 Numeric.GSL.Polynomials,
32 GSL.Minimization, 34 Numeric.GSL.Minimization,
33 GSL.Special, 35 Numeric.GSL.Special,
34 GSL.Special.Internal, 36 Numeric.GSL.Special.Internal,
35 GSL.Special.Gamma, 37 Numeric.GSL.Special.Gamma,
36 GSL.Special.Erf, 38 Numeric.GSL.Special.Erf,
37 GSL.Special.Airy, 39 Numeric.GSL.Special.Airy,
38 GSL.Special.Exp, 40 Numeric.GSL.Special.Exp,
39 GSL.Special.Bessel, 41 Numeric.GSL.Special.Bessel,
40 GSL.Special.Clausen, 42 Numeric.GSL.Special.Clausen,
41 GSL.Special.Coulomb, 43 Numeric.GSL.Special.Coulomb,
42 GSL.Special.Coupling, 44 Numeric.GSL.Special.Coupling,
43 GSL.Special.Dawson, 45 Numeric.GSL.Special.Dawson,
44 GSL.Special.Debye, 46 Numeric.GSL.Special.Debye,
45 GSL.Special.Dilog, 47 Numeric.GSL.Special.Dilog,
46 GSL.Special.Elementary, 48 Numeric.GSL.Special.Elementary,
47 GSL.Special.Ellint, 49 Numeric.GSL.Special.Ellint,
48 GSL.Special.Expint, 50 Numeric.GSL.Special.Expint,
49 GSL.Special.Fermi_dirac, 51 Numeric.GSL.Special.Fermi_dirac,
50 GSL.Special.Gegenbauer, 52 Numeric.GSL.Special.Gegenbauer,
51 GSL.Special.Hyperg, 53 Numeric.GSL.Special.Hyperg,
52 GSL.Special.Laguerre, 54 Numeric.GSL.Special.Laguerre,
53 GSL.Special.Lambert, 55 Numeric.GSL.Special.Lambert,
54 GSL.Special.Pow_int, 56 Numeric.GSL.Special.Pow_int,
55 GSL.Special.Psi, 57 Numeric.GSL.Special.Psi,
56 GSL.Special.Synchrotron, 58 Numeric.GSL.Special.Synchrotron,
57 GSL.Special.Trig, 59 Numeric.GSL.Special.Trig,
58 GSL.Special.Zeta, 60 Numeric.GSL.Special.Zeta,
59 GSL.Special.Log, 61 Numeric.GSL.Special.Log,
60 GSL.Special.Legendre, 62 Numeric.GSL.Special.Legendre,
61 GSL, 63 Numeric.GSL,
62 LinearAlgebra, 64 Numeric.LinearAlgebra,
63 LinearAlgebra.LAPACK, 65 Numeric.LinearAlgebra.LAPACK,
64 LinearAlgebra.Linear, 66 Numeric.LinearAlgebra.Linear,
65 LinearAlgebra.Instances, 67 Numeric.LinearAlgebra.Instances,
66 LinearAlgebra.Interface, 68 Numeric.LinearAlgebra.Interface,
67 LinearAlgebra.Algorithms, 69 Numeric.LinearAlgebra.Algorithms,
68 Graphics.Plot 70 Graphics.Plot
69C-sources: lib/Data/Packed/Internal/aux.c, 71C-sources: lib/Data/Packed/Internal/aux.c,
70 lib/LinearAlgebra/LAPACK/lapack-aux.c, 72 lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c,
71 lib/GSL/gsl-aux.c 73 lib/Numeric/GSL/gsl-aux.c
72extra-libraries: gsl cblas lapack 74extra-libraries: gsl cblas lapack
73cc-options: -O4 75cc-options: -O4
74ghc-prof-options: -auto-all 76ghc-prof-options: -auto-all