aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/test/polynomialsolver.cpp
diff options
context:
space:
mode:
authorGravatar Manuel Yguel <manuel.yguel@gmail.com>2011-01-05 19:49:13 +0100
committerGravatar Manuel Yguel <manuel.yguel@gmail.com>2011-01-05 19:49:13 +0100
commit934720c4ba287e6e1b1e398cf78e99d1f174705e (patch)
tree3abc58d1360cce57228946f0c193704bf18c4f46 /unsupported/test/polynomialsolver.cpp
parent4ba0ec5e0e82e970c4918ba13f5d2090f9a32f4a (diff)
Decrease the degree of the polynomials being tested to reduce time spent during the tests.
Diffstat (limited to 'unsupported/test/polynomialsolver.cpp')
-rw-r--r--unsupported/test/polynomialsolver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/unsupported/test/polynomialsolver.cpp b/unsupported/test/polynomialsolver.cpp
index dd55f8b36..54b6657c9 100644
--- a/unsupported/test/polynomialsolver.cpp
+++ b/unsupported/test/polynomialsolver.cpp
@@ -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)
)) );
}
}