makes sure to test small sizes

This commit is contained in:
Gael Guennebaud
2010-06-24 23:06:21 +02:00
parent 99e4afd43e
commit 88e7a572fd
2 changed files with 9 additions and 9 deletions

View File

@@ -75,11 +75,11 @@ void test_product_syrk()
for(int i = 0; i < g_repeat ; i++)
{
int s;
s = ei_random<int>(10,320);
s = ei_random<int>(1,320);
CALL_SUBTEST_1( syrk(MatrixXf(s, s)) );
s = ei_random<int>(10,320);
s = ei_random<int>(1,320);
CALL_SUBTEST_2( syrk(MatrixXd(s, s)) );
s = ei_random<int>(10,320);
s = ei_random<int>(1,320);
CALL_SUBTEST_3( syrk(MatrixXcd(s, s)) );
}
}