Skip to content

Commit 484cabe

Browse files
committed
Relax bound on EigVals from DataMut to Data
1 parent 6eb1d85 commit 484cabe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ndarray-linalg/src/eig.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ pub trait EigVals {
6666
impl<A, S> EigVals for ArrayBase<S, Ix2>
6767
where
6868
A: Scalar + Lapack,
69-
S: DataMut<Elem = A>,
69+
S: Data<Elem = A>,
7070
{
7171
type EigVal = Array1<A::Complex>;
7272

0 commit comments

Comments
 (0)