From b732b75a774b2c51b97b9b0a1df192de8208b809 Mon Sep 17 00:00:00 2001 From: Marc Haubenstock Date: Sat, 15 Oct 2022 19:10:31 +0200 Subject: [PATCH] added panic so that the code compiles --- nalgebra-lapack/src/eigen.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/nalgebra-lapack/src/eigen.rs b/nalgebra-lapack/src/eigen.rs index d6dc90d0..0448679c 100644 --- a/nalgebra-lapack/src/eigen.rs +++ b/nalgebra-lapack/src/eigen.rs @@ -171,6 +171,7 @@ where /// Returns a tuple of vectors. The elements of the tuple are the complex eigenvalues, complex left eigenvectors and complex right eigenvectors respectively. /// The elements appear as conjugate pairs within each vector, with the positive of the pair always being first. pub fn get_complex_elements(&self) -> (Option>>, Option, D>>>, Option, D>>>) where DefaultAllocator: Allocator, D> { + panic!("TODO"); match !self.eigenvalues_are_real() { true => (None, None, None), false => {