summaryrefslogtreecommitdiff
path: root/tests/tsum.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2006-11-19 14:35:02 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2006-11-19 14:35:02 +0000
commitfff961b5d793f18797fe8544c53338053d8302a4 (patch)
tree4b4e7a56bf01ee44779716135da54de3f09e29f2 /tests/tsum.c
parented0604f71bd2874486dbddb9f1da29a8fd5ed313 (diff)
downloadmpfr-fff961b5d793f18797fe8544c53338053d8302a4.tar.gz
fixed bug in pow (isodd -> assertion failed)
fixed problem in erfc for large input reduced tests that took too much time git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@4237 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tsum.c')
-rw-r--r--tests/tsum.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tsum.c b/tests/tsum.c
index c2ad6181e..03c621ae2 100644
--- a/tests/tsum.c
+++ b/tests/tsum.c
@@ -290,8 +290,8 @@ main (void)
check_special ();
test_sort (1764, 1026);
- for (p = 2 ; p < 1764 ; p+=17)
- for (n = 2 ; n < 1026 ; n+=42+p)
+ for (p = 2 ; p < 444 ; p += 17)
+ for (n = 2 ; n < 1026 ; n += 42 + p)
test_sum (p, n);
tests_end_mpfr ();