diff options
Diffstat (limited to 'hmatrix.cabal')
-rw-r--r-- | hmatrix.cabal | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/hmatrix.cabal b/hmatrix.cabal index 8235753..e185d8a 100644 --- a/hmatrix.cabal +++ b/hmatrix.cabal | |||
@@ -11,7 +11,7 @@ Description: This library provides a purely functional interface to basic | |||
11 | and other numerical computations, internally implemented using | 11 | and other numerical computations, internally implemented using |
12 | GSL, BLAS and LAPACK. | 12 | GSL, BLAS and LAPACK. |
13 | Category: Math | 13 | Category: Math |
14 | tested-with: GHC ==6.10.2 | 14 | tested-with: GHC ==6.10.3 |
15 | 15 | ||
16 | cabal-version: >=1.2 | 16 | cabal-version: >=1.2 |
17 | build-type: Custom | 17 | build-type: Custom |
@@ -20,6 +20,23 @@ extra-source-files: lib/Numeric/LinearAlgebra/Tests/quickCheckCompat.h | |||
20 | extra-source-files: configure configure.hs README INSTALL | 20 | extra-source-files: configure configure.hs README INSTALL |
21 | extra-tmp-files: hmatrix.buildinfo | 21 | extra-tmp-files: hmatrix.buildinfo |
22 | 22 | ||
23 | extra-source-files: examples/tests.hs | ||
24 | examples/deriv.hs | ||
25 | examples/integrate.hs | ||
26 | examples/minimize.hs | ||
27 | examples/pca1.hs | ||
28 | examples/pca2.hs | ||
29 | examples/pinv.hs | ||
30 | examples/lie.hs | ||
31 | examples/kalman.hs | ||
32 | examples/plot.hs | ||
33 | examples/latexmat.hs | ||
34 | examples/inplace.hs | ||
35 | examples/benchmarks.hs | ||
36 | examples/error.hs | ||
37 | examples/devel/wrappers.hs | ||
38 | examples/devel/functions.hs | ||
39 | |||
23 | flag splitBase | 40 | flag splitBase |
24 | description: Choose the new smaller, split-up base package. | 41 | description: Choose the new smaller, split-up base package. |
25 | 42 | ||
@@ -90,9 +107,10 @@ library | |||
90 | Numeric.LinearAlgebra.Interface, | 107 | Numeric.LinearAlgebra.Interface, |
91 | Numeric.LinearAlgebra.Algorithms, | 108 | Numeric.LinearAlgebra.Algorithms, |
92 | Graphics.Plot, | 109 | Graphics.Plot, |
93 | Numeric.LinearAlgebra.Tests | 110 | Numeric.LinearAlgebra.Tests, |
94 | Data.Packed.Convert | 111 | Data.Packed.Convert, |
95 | Data.Packed.ST | 112 | Data.Packed.ST, |
113 | Data.Packed.Development | ||
96 | other-modules: Data.Packed.Internal, | 114 | other-modules: Data.Packed.Internal, |
97 | Data.Packed.Internal.Common, | 115 | Data.Packed.Internal.Common, |
98 | Data.Packed.Internal.Vector, | 116 | Data.Packed.Internal.Vector, |