From 75208896a31fac3b22383983fc372c50ac241aa7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arttu=20Yl=C3=A4-Outinen?= Date: Sun, 12 Jul 2015 09:44:03 +0300 Subject: [PATCH] Fix multiplication of non-square DMats. Matrices were in wrong order. --- src/structs/dmat.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structs/dmat.rs b/src/structs/dmat.rs index b55227fb..9a2bc2ca 100644 --- a/src/structs/dmat.rs +++ b/src/structs/dmat.rs @@ -285,11 +285,11 @@ impl<'a, N: Copy + Mul + Add + Zero> Mul> #[inline] fn mul(self, right: DMat) -> DMat { - right * self + self * (&right) } } -impl<'a, N: Copy + Mul + Add + Zero> Mul<&'a DMat> for &'a DMat { +impl<'a, 'b, N: Copy + Mul + Add + Zero> Mul<&'b DMat> for &'a DMat { type Output = DMat; #[inline]