summaryrefslogtreecommitdiff
path: root/hmatrix.cabal
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2010-09-28 07:59:31 +0000
committerAlberto Ruiz <aruiz@um.es>2010-09-28 07:59:31 +0000
commitfbdb848b11f967bd23d4c4d1d9283e71cb834633 (patch)
tree1f0e969d308a9d3e4501f62d984fafd6bd3d5a63 /hmatrix.cabal
parentdbd943b89ff481e0971f86c2271223cfddee7a02 (diff)
move successive to Tests and examples
Diffstat (limited to 'hmatrix.cabal')
-rw-r--r--hmatrix.cabal26
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).
15Category: Math 26Category: Math
16tested-with: GHC ==6.10.4, GHC ==6.12.1 27tested-with: GHC ==6.10.4, GHC ==6.12.1
17 28
18cabal-version: >=1.2 29cabal-version: >=1.6
19 30
20build-type: Custom 31build-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
50extra-source-files: lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h, 61extra-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 179source-repository head
169 type: darcs 180 type: darcs
170 location: http://code.haskell.org/hmatrix 181 location: http://code.haskell.org/hmatrix
171