diff options
author | Hiromi ISHII <konn.jinro@gmail.com> | 2017-12-25 20:23:13 +0900 |
---|---|---|
committer | Hiromi ISHII <konn.jinro@gmail.com> | 2017-12-25 20:23:13 +0900 |
commit | e83e2023da77ecaa9aaba15bc9bd48757f73b3a9 (patch) | |
tree | f7aae740fa7129c4641cf05a9e00260e48cd92bb /packages/base/src/Internal/Container.hs | |
parent | 87c7682bbfd17308749d5e9568f1ffa25390ce79 (diff) |
Workaround for GHC-8.4.x
* Adds missing Semigroup instances
* Adds `semigroups` to the deps of `hmatrix`
* Hides conflicting names from import list with base >= 4.11
* `(Prelude.<>)` and `GHC.TypeNats.Mod`
Diffstat (limited to 'packages/base/src/Internal/Container.hs')
-rw-r--r-- | packages/base/src/Internal/Container.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/base/src/Internal/Container.hs b/packages/base/src/Internal/Container.hs index b379530..1520489 100644 --- a/packages/base/src/Internal/Container.hs +++ b/packages/base/src/Internal/Container.hs | |||
@@ -1,3 +1,4 @@ | |||
1 | {-# LANGUAGE CPP #-} | ||
1 | {-# LANGUAGE FlexibleContexts #-} | 2 | {-# LANGUAGE FlexibleContexts #-} |
2 | {-# LANGUAGE FlexibleInstances #-} | 3 | {-# LANGUAGE FlexibleInstances #-} |
3 | {-# LANGUAGE MultiParamTypeClasses #-} | 4 | {-# LANGUAGE MultiParamTypeClasses #-} |
@@ -29,7 +30,9 @@ import Internal.Matrix | |||
29 | import Internal.Element | 30 | import Internal.Element |
30 | import Internal.Numeric | 31 | import Internal.Numeric |
31 | import Internal.Algorithms(Field,linearSolveSVD,Herm,mTm) | 32 | import Internal.Algorithms(Field,linearSolveSVD,Herm,mTm) |
32 | 33 | #if MIN_VERSION_base(4,11,0) | |
34 | import Prelude hiding ((<>)) | ||
35 | #endif | ||
33 | ------------------------------------------------------------------ | 36 | ------------------------------------------------------------------ |
34 | 37 | ||
35 | {- | Creates a real vector containing a range of values: | 38 | {- | Creates a real vector containing a range of values: |