aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-11-05 00:32:48 -0800
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-11-05 00:32:48 -0800
commit780eeb3be779ea3fd6065f283278793ac7557287 (patch)
tree543f44fc616d464e816e8f9993d9f390e2c88cbe
parent90323f1751ca170490b5a7590410ef5d05d62ac5 (diff)
prevent stack overflow in unit test
-rw-r--r--test/product_small.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/product_small.cpp b/test/product_small.cpp
index c561ec63b..2a2c1e35f 100644
--- a/test/product_small.cpp
+++ b/test/product_small.cpp
@@ -58,7 +58,7 @@ void test_product_small()
}
{
- Eigen::Matrix<double, 100, 100> A, B, C;
+ Eigen::Matrix<double, 10, 10> A, B, C;
A.setRandom();
C = A;
for(int k=0; k<79; ++k)