Skip to content

Commit 429d14e

Browse files
committed
Relax requirement for DataMut on SVDCC
1 parent 856e1c9 commit 429d14e

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)