summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Numeric/GSL/Special/Internal.hsc2
-rw-r--r--lib/Numeric/LinearAlgebra.hs1
-rw-r--r--lib/Numeric/LinearAlgebra/Instances.hs3
-rw-r--r--lib/Numeric/LinearAlgebra/Linear.hs2
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/Numeric/GSL/Special/Internal.hsc b/lib/Numeric/GSL/Special/Internal.hsc
index e0744d7..96c1f40 100644
--- a/lib/Numeric/GSL/Special/Internal.hsc
+++ b/lib/Numeric/GSL/Special/Internal.hsc
@@ -1,4 +1,4 @@
1{-# OPTIONS -ffi #-} 1 {-# LANGUAGE ForeignFunctionInterface #-}
2----------------------------------------------------------------------------- 2-----------------------------------------------------------------------------
3{- | 3{- |
4Module : Numeric.GSL.Special.Internal 4Module : Numeric.GSL.Special.Internal
diff --git a/lib/Numeric/LinearAlgebra.hs b/lib/Numeric/LinearAlgebra.hs
index c14d4e4..cc2c1d3 100644
--- a/lib/Numeric/LinearAlgebra.hs
+++ b/lib/Numeric/LinearAlgebra.hs
@@ -16,7 +16,6 @@ module Numeric.LinearAlgebra (
16 module Data.Packed, 16 module Data.Packed,
17 module Numeric.LinearAlgebra.Linear, 17 module Numeric.LinearAlgebra.Linear,
18 module Numeric.LinearAlgebra.Algorithms, 18 module Numeric.LinearAlgebra.Algorithms,
19 module Numeric.LinearAlgebra.Instances,
20 module Numeric.LinearAlgebra.Interface 19 module Numeric.LinearAlgebra.Interface
21) where 20) where
22 21
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{- |
4Module : Numeric.LinearAlgebra.Instances 4Module : 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
diff --git a/lib/Numeric/LinearAlgebra/Linear.hs b/lib/Numeric/LinearAlgebra/Linear.hs
index 1bf8b04..3af9960 100644
--- a/lib/Numeric/LinearAlgebra/Linear.hs
+++ b/lib/Numeric/LinearAlgebra/Linear.hs
@@ -1,4 +1,4 @@
1{-# OPTIONS_GHC -fglasgow-exts -fallow-undecidable-instances #-} 1{-# LANGUAGE UndecidableInstances, MultiParamTypeClasses, FlexibleInstances #-}
2----------------------------------------------------------------------------- 2-----------------------------------------------------------------------------
3{- | 3{- |
4Module : Numeric.LinearAlgebra.Linear 4Module : Numeric.LinearAlgebra.Linear