diff options
-rw-r--r-- | THANKS | 10 | ||||
-rw-r--r-- | hmatrix.cabal | 2 | ||||
-rw-r--r-- | lib/Data/Packed/Internal/Vector.hs | 2 |
3 files changed, 8 insertions, 6 deletions
@@ -1,6 +1,11 @@ | |||
1 | I thank Don Stewart, Henning Thielemann, Bulat Ziganshin, Heinrich Apfelmus, | 1 | I thank Don Stewart, Henning Thielemann, Bulat Ziganshin, Heinrich Apfelmus, |
2 | and all the people in the Haskell mailing lists for their help. | 2 | and all the people in the Haskell mailing lists for their help. |
3 | 3 | ||
4 | I am particularly grateful to Vivian McPhail for his excellent | ||
5 | contributions: improved configure.hs, Binary instances for | ||
6 | Vector and Matrix, support for Float and Complex Float elements, | ||
7 | Vectors 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 | ||
47 | import GHC.Base | 47 | import GHC.Base |
48 | #if __GLASGOW_HASKELL__ < 612 | 48 | #if __GLASGOW_HASKELL__ < 612 |
49 | import GHC.IOBase | 49 | import GHC.IOBase hiding (liftIO) |
50 | #endif | 50 | #endif |
51 | 51 | ||
52 | #ifdef VECTOR | 52 | #ifdef VECTOR |