diff --git a/nalgebra-lapack/src/eigen.rs b/nalgebra-lapack/src/eigen.rs index 77c0f873..bab9de83 100644 --- a/nalgebra-lapack/src/eigen.rs +++ b/nalgebra-lapack/src/eigen.rs @@ -232,8 +232,15 @@ where /// The complex eigen decomposition of the given matrix. /// /// Panics if the eigenvalue computation does not converge. - pub fn complex_eigen_decomposition(mut m: OMatrix, left_eigenvectors: bool, eigenvectors: bool) - -> (OVector, D>, Option>, Option>) + pub fn complex_eigen_decomposition( + mut m: OMatrix, + left_eigenvectors: bool, + eigenvectors: bool, + ) -> ( + OVector, D>, + Option>, + Option>, + ) where DefaultAllocator: Allocator, D> + Allocator, D, D>, {