Decrease the degree of the polynomials being tested to reduce time spent during the tests.

This commit is contained in:
Manuel Yguel 2011-01-05 19:49:13 +01:00
parent 4ba0ec5e0e
commit 934720c4ba

View File

@ -253,10 +253,10 @@ void test_polynomialsolver()
CALL_SUBTEST_8( (polynomialsolver<double,8>(8)) );
CALL_SUBTEST_9( (polynomialsolver<float,Dynamic>(
internal::random<int>(9,45)
internal::random<int>(9,13)
)) );
CALL_SUBTEST_10((polynomialsolver<double,Dynamic>(
internal::random<int>(9,45)
internal::random<int>(9,13)
)) );
}
}