summaryrefslogtreecommitdiff
path: root/hmatrix.cabal
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2010-05-11 09:07:52 +0000
committerAlberto Ruiz <aruiz@um.es>2010-05-11 09:07:52 +0000
commitaa8debb5ab389de7bc5b47c5ae5f038349b6efc1 (patch)
treeceb1ae6932ef0769616089fd05a7ba099b9a5b30 /hmatrix.cabal
parent0c1b8611b9cc55cc646c708b63442f3aaac1249d (diff)
simplify modules
Diffstat (limited to 'hmatrix.cabal')
-rw-r--r--hmatrix.cabal11
1 files changed, 8 insertions, 3 deletions
diff --git a/hmatrix.cabal b/hmatrix.cabal
index 892b846..e684acc 100644
--- a/hmatrix.cabal
+++ b/hmatrix.cabal
@@ -1,5 +1,5 @@
1Name: hmatrix 1Name: hmatrix
2Version: 0.9.2.0 2Version: 0.9.3.0
3License: GPL 3License: GPL
4License-file: LICENSE 4License-file: LICENSE
5Author: Alberto Ruiz 5Author: Alberto Ruiz
@@ -10,6 +10,8 @@ Synopsis: Linear algebra and numerical computation
10Description: Purely functional interface to basic linear algebra 10Description: 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 .
14 See also hmatrix-special and hmatrix-glpk.
13Category: Math 15Category: Math
14tested-with: GHC ==6.10.4, GHC ==6.12.1 16tested-with: GHC ==6.10.4, GHC ==6.12.1
15 17
@@ -89,8 +91,6 @@ library
89 Numeric.GSL, 91 Numeric.GSL,
90 Numeric.LinearAlgebra, 92 Numeric.LinearAlgebra,
91 Numeric.LinearAlgebra.LAPACK, 93 Numeric.LinearAlgebra.LAPACK,
92 Numeric.LinearAlgebra.Linear,
93 Numeric.LinearAlgebra.Instances,
94 Numeric.LinearAlgebra.Interface, 94 Numeric.LinearAlgebra.Interface,
95 Numeric.LinearAlgebra.Algorithms, 95 Numeric.LinearAlgebra.Algorithms,
96 Graphics.Plot, 96 Graphics.Plot,
@@ -103,6 +103,8 @@ library
103 Data.Packed.Internal.Signatures, 103 Data.Packed.Internal.Signatures,
104 Data.Packed.Internal.Vector, 104 Data.Packed.Internal.Vector,
105 Data.Packed.Internal.Matrix, 105 Data.Packed.Internal.Matrix,
106 Numeric.LinearAlgebra.Linear,
107 Numeric.LinearAlgebra.Instances,
106 Numeric.GSL.Internal 108 Numeric.GSL.Internal
107 109
108 C-sources: lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c, 110 C-sources: lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c,
@@ -141,6 +143,9 @@ library
141 extra-libraries: gsl 143 extra-libraries: gsl
142 frameworks: Accelerate 144 frameworks: Accelerate
143 145
146 if os(windows)
147 extra-libraries: gsl-0 blas lapack
148
144-- The extra-libraries required for GSL and LAPACK 149-- The extra-libraries required for GSL and LAPACK
145-- should now be automatically detected by configure(.hs) 150-- should now be automatically detected by configure(.hs)
146 151