aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/schur_real.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-10-30 18:06:03 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-10-30 18:06:03 +0100
commit8a3151de2eae8299629417c98c1040b7ced5bdb5 (patch)
tree18646974fc55c06ab2c61c44d36078a0506d450a /test/schur_real.cpp
parentfdf3030ff86fc7d194e6c67acafca80d3148991c (diff)
Limit matrix size for other eigen and schur decompositions
Diffstat (limited to 'test/schur_real.cpp')
-rw-r--r--test/schur_real.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/schur_real.cpp b/test/schur_real.cpp
index 36b9c24d1..e67db6433 100644
--- a/test/schur_real.cpp
+++ b/test/schur_real.cpp
@@ -91,7 +91,7 @@ template<typename MatrixType> void schur(int size = MatrixType::ColsAtCompileTim
VERIFY_IS_EQUAL(rs1.matrixT(), rsOnlyT.matrixT());
VERIFY_RAISES_ASSERT(rsOnlyT.matrixU());
- if (size > 2)
+ if (size > 2 && rows < 20)
{
// Test matrix with NaN
A(0,0) = std::numeric_limits<typename MatrixType::Scalar>::quiet_NaN();