Merge branch 'development' into issue-115

This commit is contained in:
Malte Londschien
2021-10-28 09:54:22 +02:00
17 changed files with 33 additions and 34 deletions
+2 -2
View File
@@ -178,7 +178,7 @@ impl<T: RealNumber + ScalarOperand> BaseVector<T> for ArrayBase<OwnedRepr<T>, Ix
}
fn copy_from(&mut self, other: &Self) {
self.assign(&other);
self.assign(other);
}
}
@@ -385,7 +385,7 @@ impl<T: RealNumber + ScalarOperand + AddAssign + SubAssign + MulAssign + DivAssi
}
fn copy_from(&mut self, other: &Self) {
self.assign(&other);
self.assign(other);
}
fn abs_mut(&mut self) -> &Self {