We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45ea8f4 commit 443c96fCopy full SHA for 443c96f
src/matrix/ge/operators/mul.rs
@@ -12,7 +12,7 @@ where
12
rhs.elems
13
.par_iter_mut()
14
.map(|r| {
15
- *r += lhs;
+ *r *= lhs;
16
})
17
.collect::<Vec<_>>();
18
@@ -32,7 +32,7 @@ where
32
33
.zip(rhs.elems.par_iter())
34
.map(|(l, &r)| {
35
- *l += r;
+ *l *= r;
36
37
38
src/matrix/ge/operators/sub.rs
+ *r -= lhs;
+ *l -= r;
0 commit comments