aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/schur_real.cpp
diff options
context:
space:
mode:
authorGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2010-06-04 09:40:35 +0100
committerGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2010-06-04 09:40:35 +0100
commit1ff1bd69acc8f2d50348a57855c8ec35521590bd (patch)
treee5b3b1f7143bfdab3d1910f4f157552a8ad23b4b /test/schur_real.cpp
parent9178e2bd54f64febb43025b9710387d2e98fea34 (diff)
Schur decomposition of 1-by-1 always converges.
Diffstat (limited to 'test/schur_real.cpp')
-rw-r--r--test/schur_real.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/test/schur_real.cpp b/test/schur_real.cpp
index 1e8c4b0ba..2eae52956 100644
--- a/test/schur_real.cpp
+++ b/test/schur_real.cpp
@@ -85,10 +85,13 @@ template<typename MatrixType> void schur(int size = MatrixType::ColsAtCompileTim
VERIFY_IS_EQUAL(rs1.matrixT(), rsOnlyT.matrixT());
VERIFY_RAISES_ASSERT(rsOnlyT.matrixU());
- // Test matrix with NaN
- A(0,0) = std::numeric_limits<typename MatrixType::Scalar>::quiet_NaN();
- RealSchur<MatrixType> rsNaN(A);
- VERIFY_IS_EQUAL(rsNaN.info(), NoConvergence);
+ if (size > 1)
+ {
+ // Test matrix with NaN
+ A(0,0) = std::numeric_limits<typename MatrixType::Scalar>::quiet_NaN();
+ RealSchur<MatrixType> rsNaN(A);
+ VERIFY_IS_EQUAL(rsNaN.info(), NoConvergence);
+ }
}
void test_schur_real()