diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/base/hmatrix.cabal | 2 | ||||
-rw-r--r-- | packages/glpk/hmatrix-glpk.cabal | 2 | ||||
-rw-r--r-- | packages/gsl/hmatrix-gsl.cabal | 31 | ||||
-rw-r--r-- | packages/special/hmatrix-special.cabal | 2 |
4 files changed, 6 insertions, 31 deletions
diff --git a/packages/base/hmatrix.cabal b/packages/base/hmatrix.cabal index 0eeb6f0..fd45c6d 100644 --- a/packages/base/hmatrix.cabal +++ b/packages/base/hmatrix.cabal | |||
@@ -21,7 +21,7 @@ extra-source-files: src/C/lapack-aux.h | |||
21 | 21 | ||
22 | library | 22 | library |
23 | 23 | ||
24 | Build-Depends: base, | 24 | Build-Depends: base >= 4 && < 5, |
25 | binary, | 25 | binary, |
26 | array, | 26 | array, |
27 | deepseq, | 27 | deepseq, |
diff --git a/packages/glpk/hmatrix-glpk.cabal b/packages/glpk/hmatrix-glpk.cabal index ae8a967..646c73c 100644 --- a/packages/glpk/hmatrix-glpk.cabal +++ b/packages/glpk/hmatrix-glpk.cabal | |||
@@ -22,7 +22,7 @@ extra-source-files: examples/simplex1.hs | |||
22 | examples/simplex4.hs | 22 | examples/simplex4.hs |
23 | 23 | ||
24 | library | 24 | library |
25 | Build-Depends: base, hmatrix >= 0.16 | 25 | Build-Depends: base <5, 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 e2f02e9..ce57619 100644 --- a/packages/gsl/hmatrix-gsl.cabal +++ b/packages/gsl/hmatrix-gsl.cabal | |||
@@ -7,9 +7,8 @@ Maintainer: Alberto Ruiz <aruiz@um.es> | |||
7 | Stability: provisional | 7 | Stability: provisional |
8 | Homepage: https://github.com/albertoruiz/hmatrix | 8 | Homepage: https://github.com/albertoruiz/hmatrix |
9 | Synopsis: Numerical computation | 9 | Synopsis: Numerical computation |
10 | Description: Purely functional interface to basic linear algebra | 10 | Description: Purely functional interface to selected numerical computations, |
11 | and other numerical computations, internally implemented using | 11 | internally implemented using GSL. |
12 | GSL, BLAS and LAPACK. | ||
13 | 12 | ||
14 | Category: Math | 13 | Category: Math |
15 | tested-with: GHC ==7.8 | 14 | tested-with: GHC ==7.8 |
@@ -20,33 +19,9 @@ build-type: Simple | |||
20 | 19 | ||
21 | extra-source-files: src/Numeric/GSL/gsl-ode.c | 20 | extra-source-files: src/Numeric/GSL/gsl-ode.c |
22 | 21 | ||
23 | flag dd | ||
24 | description: svd = zgesdd | ||
25 | default: True | ||
26 | |||
27 | flag mkl | ||
28 | description: Link with Intel's MKL optimized libraries. | ||
29 | default: False | ||
30 | |||
31 | flag unsafe | ||
32 | description: Compile the library with bound checking disabled. | ||
33 | default: False | ||
34 | |||
35 | flag finit | ||
36 | description: Force FPU initialization in foreing calls | ||
37 | default: False | ||
38 | |||
39 | flag debugfpu | ||
40 | description: Check FPU stack | ||
41 | default: False | ||
42 | |||
43 | flag debugnan | ||
44 | description: Check NaN | ||
45 | default: False | ||
46 | |||
47 | library | 22 | library |
48 | 23 | ||
49 | Build-Depends: base, hmatrix>=0.16, array, vector, | 24 | Build-Depends: base<5, hmatrix>=0.16, array, vector, |
50 | process, random | 25 | process, random |
51 | 26 | ||
52 | 27 | ||
diff --git a/packages/special/hmatrix-special.cabal b/packages/special/hmatrix-special.cabal index 89f4f80..6d9438c 100644 --- a/packages/special/hmatrix-special.cabal +++ b/packages/special/hmatrix-special.cabal | |||
@@ -27,7 +27,7 @@ flag safe-cheap | |||
27 | default: False | 27 | default: False |
28 | 28 | ||
29 | library | 29 | library |
30 | Build-Depends: base, hmatrix, hmatrix-gsl | 30 | Build-Depends: base <5, hmatrix, hmatrix-gsl |
31 | 31 | ||
32 | Extensions: ForeignFunctionInterface, | 32 | Extensions: ForeignFunctionInterface, |
33 | CPP | 33 | CPP |