From 8a3151de2eae8299629417c98c1040b7ced5bdb5 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 30 Oct 2015 18:06:03 +0100 Subject: Limit matrix size for other eigen and schur decompositions --- test/schur_real.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/schur_real.cpp') 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 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::quiet_NaN(); -- cgit v1.2.3