added panic so that the code compiles

This commit is contained in:
Marc Haubenstock 2022-10-15 19:10:31 +02:00
parent d61f9e29ba
commit b732b75a77
1 changed files with 1 additions and 0 deletions

View File

@ -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<Vec<Complex<T>>>, Option<Vec<OVector<Complex<T>, D>>>, Option<Vec<OVector<Complex<T>, D>>>) where DefaultAllocator: Allocator<Complex<T>, D> {
panic!("TODO");
match !self.eigenvalues_are_real() {
true => (None, None, None),
false => {