diff options
Diffstat (limited to 'lib/Numeric/LinearAlgebra/Instances.hs')
-rw-r--r-- | lib/Numeric/LinearAlgebra/Instances.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Numeric/LinearAlgebra/Instances.hs b/lib/Numeric/LinearAlgebra/Instances.hs index 91467ad..147537d 100644 --- a/lib/Numeric/LinearAlgebra/Instances.hs +++ b/lib/Numeric/LinearAlgebra/Instances.hs | |||
@@ -1,4 +1,4 @@ | |||
1 | {-# OPTIONS_GHC -fglasgow-exts -fallow-undecidable-instances #-} | 1 | {-# LANGUAGE UndecidableInstances, FlexibleInstances #-} |
2 | ----------------------------------------------------------------------------- | 2 | ----------------------------------------------------------------------------- |
3 | {- | | 3 | {- | |
4 | Module : Numeric.LinearAlgebra.Instances | 4 | Module : Numeric.LinearAlgebra.Instances |
@@ -188,3 +188,4 @@ instance (Storable a) => Monoid (Vector a) where | |||
188 | mconcat = j . filter ((>0).dim) | 188 | mconcat = j . filter ((>0).dim) |
189 | where j [] = mempty | 189 | where j [] = mempty |
190 | j l = join l | 190 | j l = join l |
191 | |||