summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
Diffstat (limited to 'packages')
-rw-r--r--packages/glpk/hmatrix-glpk.cabal4
-rw-r--r--packages/gsl/hmatrix-gsl.cabal2
-rw-r--r--packages/sparse/hmatrix-sparse.cabal2
-rw-r--r--packages/tests/hmatrix-tests.cabal4
-rw-r--r--packages/tests/src/Numeric/LinearAlgebra/Tests.hs8
-rw-r--r--packages/tests/src/Numeric/LinearAlgebra/Tests/Instances.hs6
-rw-r--r--packages/tests/src/Numeric/LinearAlgebra/Tests/Properties.hs6
7 files changed, 13 insertions, 19 deletions
diff --git a/packages/glpk/hmatrix-glpk.cabal b/packages/glpk/hmatrix-glpk.cabal
index 533ee2d..ae8a967 100644
--- a/packages/glpk/hmatrix-glpk.cabal
+++ b/packages/glpk/hmatrix-glpk.cabal
@@ -11,7 +11,7 @@ Description:
11 Simple interface to linear programming functions provided by GLPK. 11 Simple interface to linear programming functions provided by GLPK.
12 12
13Category: Math 13Category: Math
14tested-with: GHC ==7.4 14tested-with: GHC ==7.8
15 15
16cabal-version: >=1.6 16cabal-version: >=1.6
17build-type: Simple 17build-type: Simple
@@ -22,7 +22,7 @@ extra-source-files: examples/simplex1.hs
22 examples/simplex4.hs 22 examples/simplex4.hs
23 23
24library 24library
25 Build-Depends: base, hmatrix 25 Build-Depends: base, hmatrix >= 0.16
26 26
27 hs-source-dirs: src 27 hs-source-dirs: src
28 28
diff --git a/packages/gsl/hmatrix-gsl.cabal b/packages/gsl/hmatrix-gsl.cabal
index 2badc35..e2f02e9 100644
--- a/packages/gsl/hmatrix-gsl.cabal
+++ b/packages/gsl/hmatrix-gsl.cabal
@@ -46,7 +46,7 @@ flag debugnan
46 46
47library 47library
48 48
49 Build-Depends: base, hmatrix, array, vector, 49 Build-Depends: base, hmatrix>=0.16, array, vector,
50 process, random 50 process, random
51 51
52 52
diff --git a/packages/sparse/hmatrix-sparse.cabal b/packages/sparse/hmatrix-sparse.cabal
index 877ab1f..d048086 100644
--- a/packages/sparse/hmatrix-sparse.cabal
+++ b/packages/sparse/hmatrix-sparse.cabal
@@ -19,7 +19,7 @@ build-type: Simple
19 19
20 20
21library 21library
22 Build-Depends: base, hmatrix 22 Build-Depends: base, hmatrix>=0.16
23 23
24 hs-source-dirs: src 24 hs-source-dirs: src
25 25
diff --git a/packages/tests/hmatrix-tests.cabal b/packages/tests/hmatrix-tests.cabal
index 5d18a68..fec2f98 100644
--- a/packages/tests/hmatrix-tests.cabal
+++ b/packages/tests/hmatrix-tests.cabal
@@ -1,6 +1,6 @@
1Name: hmatrix-tests 1Name: hmatrix-tests
2Version: 0.4 2Version: 0.4
3License: GPL 3License: BSD3
4License-file: LICENSE 4License-file: LICENSE
5Author: Alberto Ruiz 5Author: Alberto Ruiz
6Maintainer: Alberto Ruiz <aruiz@um.es> 6Maintainer: Alberto Ruiz <aruiz@um.es>
@@ -21,7 +21,7 @@ extra-source-files: CHANGES
21library 21library
22 22
23 Build-Depends: base >= 4 && < 5, 23 Build-Depends: base >= 4 && < 5,
24 hmatrix, hmatrix-gsl, 24 hmatrix >= 0.16, hmatrix-gsl >= 0.16,
25 QuickCheck >= 2, HUnit, random 25 QuickCheck >= 2, HUnit, random
26 26
27 hs-source-dirs: src 27 hs-source-dirs: src
diff --git a/packages/tests/src/Numeric/LinearAlgebra/Tests.hs b/packages/tests/src/Numeric/LinearAlgebra/Tests.hs
index ee57cbc..76e66b8 100644
--- a/packages/tests/src/Numeric/LinearAlgebra/Tests.hs
+++ b/packages/tests/src/Numeric/LinearAlgebra/Tests.hs
@@ -5,12 +5,10 @@
5----------------------------------------------------------------------------- 5-----------------------------------------------------------------------------
6{- | 6{- |
7Module : Numeric.LinearAlgebra.Tests 7Module : Numeric.LinearAlgebra.Tests
8Copyright : (c) Alberto Ruiz 2007-11 8Copyright : (c) Alberto Ruiz 2007-14
9License : GPL-style 9License : BSD3
10 10Maintainer : Alberto Ruiz
11Maintainer : Alberto Ruiz (aruiz at um dot es)
12Stability : provisional 11Stability : provisional
13Portability : portable
14 12
15Some tests. 13Some tests.
16 14
diff --git a/packages/tests/src/Numeric/LinearAlgebra/Tests/Instances.hs b/packages/tests/src/Numeric/LinearAlgebra/Tests/Instances.hs
index b306f94..53fc4d2 100644
--- a/packages/tests/src/Numeric/LinearAlgebra/Tests/Instances.hs
+++ b/packages/tests/src/Numeric/LinearAlgebra/Tests/Instances.hs
@@ -4,11 +4,9 @@
4{- | 4{- |
5Module : Numeric.LinearAlgebra.Tests.Instances 5Module : Numeric.LinearAlgebra.Tests.Instances
6Copyright : (c) Alberto Ruiz 2008 6Copyright : (c) Alberto Ruiz 2008
7License : GPL-style 7License : BSD3
8 8Maintainer : Alberto Ruiz
9Maintainer : Alberto Ruiz (aruiz at um dot es)
10Stability : provisional 9Stability : provisional
11Portability : portable
12 10
13Arbitrary instances for vectors, matrices. 11Arbitrary instances for vectors, matrices.
14 12
diff --git a/packages/tests/src/Numeric/LinearAlgebra/Tests/Properties.hs b/packages/tests/src/Numeric/LinearAlgebra/Tests/Properties.hs
index f4f1b89..d6ec957 100644
--- a/packages/tests/src/Numeric/LinearAlgebra/Tests/Properties.hs
+++ b/packages/tests/src/Numeric/LinearAlgebra/Tests/Properties.hs
@@ -4,11 +4,9 @@
4{- | 4{- |
5Module : Numeric.LinearAlgebra.Tests.Properties 5Module : Numeric.LinearAlgebra.Tests.Properties
6Copyright : (c) Alberto Ruiz 2008 6Copyright : (c) Alberto Ruiz 2008
7License : GPL-style 7License : BSD3
8 8Maintainer : Alberto Ruiz
9Maintainer : Alberto Ruiz (aruiz at um dot es)
10Stability : provisional 9Stability : provisional
11Portability : portable
12 10
13Testing properties. 11Testing properties.
14 12