diff options
author | Alberto Ruiz <aruiz@um.es> | 2017-12-26 14:05:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-26 14:05:35 +0100 |
commit | 0d4018b09f1d38bbc05fdc0d8197d0f8a6ce5571 (patch) | |
tree | f7aae740fa7129c4641cf05a9e00260e48cd92bb /packages/gsl/src/Numeric/GSL/Random.hs | |
parent | 87c7682bbfd17308749d5e9568f1ffa25390ce79 (diff) | |
parent | e83e2023da77ecaa9aaba15bc9bd48757f73b3a9 (diff) |
Merge pull request #245 from konn/ghc84
Workaround for GHC-8.4.x
Diffstat (limited to 'packages/gsl/src/Numeric/GSL/Random.hs')
-rw-r--r-- | packages/gsl/src/Numeric/GSL/Random.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/gsl/src/Numeric/GSL/Random.hs b/packages/gsl/src/Numeric/GSL/Random.hs index aad9ad9..20a6c31 100644 --- a/packages/gsl/src/Numeric/GSL/Random.hs +++ b/packages/gsl/src/Numeric/GSL/Random.hs | |||
@@ -1,3 +1,4 @@ | |||
1 | {-# LANGUAGE CPP #-} | ||
1 | ----------------------------------------------------------------------------- | 2 | ----------------------------------------------------------------------------- |
2 | -- | | 3 | -- | |
3 | -- Module : Numeric.GSL.Random | 4 | -- Module : Numeric.GSL.Random |
@@ -30,7 +31,9 @@ import Numeric.LinearAlgebra.HMatrix hiding ( | |||
30 | randn | 31 | randn |
31 | ) | 32 | ) |
32 | import System.Random(randomIO) | 33 | import System.Random(randomIO) |
33 | 34 | #if MIN_VERSION_base(4,11,0) | |
35 | import Prelude hiding ((<>)) | ||
36 | #endif | ||
34 | 37 | ||
35 | type Seed = Int | 38 | type Seed = Int |
36 | 39 | ||