Skip to content

Commit 57393b2

Browse files
authored
Merge pull request #303 from benkay86/master
Relax requirement for DataMut on SVDCC
2 parents 8555931 + 429d14e commit 57393b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ndarray-linalg/src/svddc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pub trait SVDDCInplace {
3838
impl<A, S> SVDDC for ArrayBase<S, Ix2>
3939
where
4040
A: Scalar + Lapack,
41-
S: DataMut<Elem = A>,
41+
S: Data<Elem = A>,
4242
{
4343
type U = Array2<A>;
4444
type VT = Array2<A>;

0 commit comments

Comments
 (0)