summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2010-07-27 12:45:50 +0000
committerAlberto Ruiz <aruiz@um.es>2010-07-27 12:45:50 +0000
commit91510a3d127d8d9bb10daec9a9ec22d3ad2c199e (patch)
treeab59385c04e599aeabc7d55784035c6ff401a6b8
parente32a16b5d4fc66bee2f28b1b1f7ae8fb3f8a8cf4 (diff)
ghc-binary -> binary, and thanks
-rw-r--r--THANKS10
-rw-r--r--hmatrix.cabal2
-rw-r--r--lib/Data/Packed/Internal/Vector.hs2
3 files changed, 8 insertions, 6 deletions
diff --git a/THANKS b/THANKS
index df47b12..22ecc05 100644
--- a/THANKS
+++ b/THANKS
@@ -1,6 +1,11 @@
1I thank Don Stewart, Henning Thielemann, Bulat Ziganshin, Heinrich Apfelmus, 1I thank Don Stewart, Henning Thielemann, Bulat Ziganshin, Heinrich Apfelmus,
2and all the people in the Haskell mailing lists for their help. 2and all the people in the Haskell mailing lists for their help.
3 3
4I am particularly grateful to Vivian McPhail for his excellent
5contributions: improved configure.hs, Binary instances for
6Vector and Matrix, support for Float and Complex Float elements,
7Vectors typeclass, monadic vectorMapM, and many other improvements.
8
4- Nico Mahlo discovered a bug in the eigendecomposition wrapper. 9- Nico Mahlo discovered a bug in the eigendecomposition wrapper.
5 10
6- Frederik Eaton discovered a bug in the design of the wrappers. 11- Frederik Eaton discovered a bug in the design of the wrappers.
@@ -72,8 +77,5 @@ and all the people in the Haskell mailing lists for their help.
72 77
73- Max Suica simplified the installation on Windows and improved the instructions. 78- Max Suica simplified the installation on Windows and improved the instructions.
74 79
75- Vivian McPhail fixed configure.hs to allow non-root user installation in 80- John Billings reported an incompatibility with QuickCheck>=2.1.1
76 case that /tmp is not writable. He also contributed Binary instances for
77 Vector and Matrix.
78 81
79- Vivian McPhail added support for Float and Complex Float elements.
diff --git a/hmatrix.cabal b/hmatrix.cabal
index 0bcc3aa..708bfd2 100644
--- a/hmatrix.cabal
+++ b/hmatrix.cabal
@@ -76,7 +76,7 @@ library
76 array, mtl, 76 array, mtl,
77 storable-complex, 77 storable-complex,
78 process, 78 process,
79 ghc-binary 79 binary
80 80
81 Extensions: ForeignFunctionInterface, 81 Extensions: ForeignFunctionInterface,
82 CPP 82 CPP
diff --git a/lib/Data/Packed/Internal/Vector.hs b/lib/Data/Packed/Internal/Vector.hs
index ec2bf3c..2900149 100644
--- a/lib/Data/Packed/Internal/Vector.hs
+++ b/lib/Data/Packed/Internal/Vector.hs
@@ -46,7 +46,7 @@ import Foreign.ForeignPtr (mallocForeignPtrBytes)
46 46
47import GHC.Base 47import GHC.Base
48#if __GLASGOW_HASKELL__ < 612 48#if __GLASGOW_HASKELL__ < 612
49import GHC.IOBase 49import GHC.IOBase hiding (liftIO)
50#endif 50#endif
51 51
52#ifdef VECTOR 52#ifdef VECTOR