summaryrefslogtreecommitdiff
path: root/lib/Numeric/LinearAlgebra/Interface.hs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Numeric/LinearAlgebra/Interface.hs')
-rw-r--r--lib/Numeric/LinearAlgebra/Interface.hs2
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
35class Mul a b c | a b -> c where 35class 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
40instance Mul Matrix Matrix Matrix where 40instance Mul Matrix Matrix Matrix where
41 (<>) = multiply 41 (<>) = multiply