diff options
Diffstat (limited to 'hmatrix.cabal')
-rw-r--r-- | hmatrix.cabal | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/hmatrix.cabal b/hmatrix.cabal index fb5ed05..a98d984 100644 --- a/hmatrix.cabal +++ b/hmatrix.cabal | |||
@@ -11,11 +11,22 @@ Description: Purely functional interface to basic linear algebra | |||
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 | . | 13 | . |
14 | See also hmatrix-special and hmatrix-glpk. | 14 | The Linear Algebra API is organized as follows: |
15 | . | ||
16 | - "Data.Packed": structure manipulation | ||
17 | . | ||
18 | - "Numeric.Container": simple numeric functions | ||
19 | . | ||
20 | - "Numeric.LinearAlgebra.Algorithms": matrix computations | ||
21 | . | ||
22 | - "Numeric.LinearAlgebra": everything + instances of standard Haskell numeric classes | ||
23 | . | ||
24 | See also @hmatrix-special@ for GSL special functions | ||
25 | and @hmatrix-glpk@ for linear programming (simplex). | ||
15 | Category: Math | 26 | Category: Math |
16 | tested-with: GHC ==6.10.4, GHC ==6.12.1 | 27 | tested-with: GHC ==6.10.4, GHC ==6.12.1 |
17 | 28 | ||
18 | cabal-version: >=1.2 | 29 | cabal-version: >=1.6 |
19 | 30 | ||
20 | build-type: Custom | 31 | build-type: Custom |
21 | 32 | ||
@@ -45,7 +56,7 @@ extra-source-files: examples/tests.hs | |||
45 | examples/devel/ej2/functions.c | 56 | examples/devel/ej2/functions.c |
46 | examples/Real.hs | 57 | examples/Real.hs |
47 | examples/vector.hs | 58 | examples/vector.hs |
48 | examples/vector-map.hs | 59 | examples/monadic.hs |
49 | 60 | ||
50 | extra-source-files: lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h, | 61 | extra-source-files: lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h, |
51 | lib/Numeric/LinearAlgebra/LAPACK/clapack.h | 62 | lib/Numeric/LinearAlgebra/LAPACK/clapack.h |
@@ -120,7 +131,7 @@ library | |||
120 | lib/Numeric/GSL/gsl-aux.c | 131 | lib/Numeric/GSL/gsl-aux.c |
121 | 132 | ||
122 | if flag(vector) | 133 | if flag(vector) |
123 | Build-Depends: vector | 134 | Build-Depends: vector >= 0.7 |
124 | cpp-options: -DVECTOR | 135 | cpp-options: -DVECTOR |
125 | 136 | ||
126 | if flag(tests) | 137 | if flag(tests) |
@@ -165,7 +176,6 @@ library | |||
165 | extra-libraries: | 176 | extra-libraries: |
166 | extra-lib-dirs: | 177 | extra-lib-dirs: |
167 | 178 | ||
168 | source-repository head | 179 | source-repository head |
169 | type: darcs | 180 | type: darcs |
170 | location: http://code.haskell.org/hmatrix | 181 | location: http://code.haskell.org/hmatrix |
171 | |||