prevent stack overflow in unit test

This commit is contained in:
Gael Guennebaud 2015-11-05 00:32:48 -08:00
parent 90323f1751
commit 780eeb3be7

View File

@ -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)