aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/schur_complex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/schur_complex.cpp')
-rw-r--r--test/schur_complex.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/schur_complex.cpp b/test/schur_complex.cpp
index b33411cf2..cc8174d00 100644
--- a/test/schur_complex.cpp
+++ b/test/schur_complex.cpp
@@ -56,6 +56,11 @@ template<typename MatrixType> void schur(int size = MatrixType::ColsAtCompileTim
ComplexSchur<MatrixType> cs2(A);
VERIFY_IS_EQUAL(cs1.matrixT(), cs2.matrixT());
VERIFY_IS_EQUAL(cs1.matrixU(), cs2.matrixU());
+
+ // Test computation of only T, not U
+ ComplexSchur<MatrixType> csOnlyT(A, false);
+ VERIFY_IS_EQUAL(cs1.matrixT(), csOnlyT.matrixT());
+ VERIFY_RAISES_ASSERT(csOnlyT.matrixU());
}
void test_schur_complex()