diff options
Diffstat (limited to 'lib/Numeric/HMatrix/Devel.hs')
-rw-r--r-- | lib/Numeric/HMatrix/Devel.hs | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/Numeric/HMatrix/Devel.hs b/lib/Numeric/HMatrix/Devel.hs index 37bf826..7363477 100644 --- a/lib/Numeric/HMatrix/Devel.hs +++ b/lib/Numeric/HMatrix/Devel.hs | |||
@@ -50,15 +50,20 @@ module Numeric.HMatrix.Devel( | |||
50 | mapMatrixWithIndex, mapMatrixWithIndexM, mapMatrixWithIndexM_, | 50 | mapMatrixWithIndex, mapMatrixWithIndexM, mapMatrixWithIndexM_, |
51 | liftMatrix, liftMatrix2, liftMatrix2Auto, | 51 | liftMatrix, liftMatrix2, liftMatrix2Auto, |
52 | 52 | ||
53 | -- * Misc | 53 | -- * Auxiliary classes |
54 | Element, Container, Product, Contraction, LSDiv, Field | 54 | Element, Container, Product, Contraction, LSDiv, |
55 | Complexable(), RealElement(), | ||
56 | RealOf, ComplexOf, SingleOf, DoubleOf, | ||
57 | IndexOf, | ||
58 | Field, | ||
55 | ) where | 59 | ) where |
56 | 60 | ||
57 | import Data.Packed.Foreign | 61 | import Data.Packed.Foreign |
58 | import Data.Packed.Development | 62 | import Data.Packed.Development |
59 | import Data.Packed.ST | 63 | import Data.Packed.ST |
60 | import Numeric.Container(Container,Contraction,LSDiv,Product) | 64 | import Numeric.Container(Container,Contraction,LSDiv,Product, |
65 | Complexable(),RealElement(), | ||
66 | RealOf, ComplexOf, SingleOf, DoubleOf, IndexOf) | ||
61 | import Data.Packed | 67 | import Data.Packed |
62 | import Numeric.LinearAlgebra.Algorithms(Field) | 68 | import Numeric.LinearAlgebra.Algorithms(Field) |
63 | 69 | ||
64 | |||