diff options
Diffstat (limited to 'lib/Numeric/LinearAlgebra/Interface.hs')
-rw-r--r-- | lib/Numeric/LinearAlgebra/Interface.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Numeric/LinearAlgebra/Interface.hs b/lib/Numeric/LinearAlgebra/Interface.hs index f8917a0..6df782f 100644 --- a/lib/Numeric/LinearAlgebra/Interface.hs +++ b/lib/Numeric/LinearAlgebra/Interface.hs | |||
@@ -35,7 +35,7 @@ import Numeric.LinearAlgebra.Linear | |||
35 | class Mul a b c | a b -> c where | 35 | class Mul a b c | a b -> c where |
36 | infixl 7 <> | 36 | infixl 7 <> |
37 | -- | Matrix-matrix, matrix-vector, and vector-matrix products. | 37 | -- | Matrix-matrix, matrix-vector, and vector-matrix products. |
38 | (<>) :: Field t => a t -> b t -> c t | 38 | (<>) :: Prod t => a t -> b t -> c t |
39 | 39 | ||
40 | instance Mul Matrix Matrix Matrix where | 40 | instance Mul Matrix Matrix Matrix where |
41 | (<>) = multiply | 41 | (<>) = multiply |