diff options
author | thevenyp <thevenyp@280ebfd0-de03-0410-8827-d642c229c3f4> | 2008-09-18 16:33:16 +0000 |
---|---|---|
committer | thevenyp <thevenyp@280ebfd0-de03-0410-8827-d642c229c3f4> | 2008-09-18 16:33:16 +0000 |
commit | 887678b6cee0e89e40df2b3c3a1cb8e0713292fd (patch) | |
tree | 4fda1c8c4d3e2743d3f3ff10161706077d1d7646 /tests/tadd.c | |
parent | 0f0fceda1553e7fd6729db25f910666873bc76a0 (diff) | |
download | mpfr-887678b6cee0e89e40df2b3c3a1cb8e0713292fd.tar.gz |
Remove obsolete mpfr_random function and replace it by mpfr_urandomb in tests.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@5640 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tadd.c')
-rw-r--r-- | tests/tadd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tadd.c b/tests/tadd.c index 0a3d1e887..ab111ed8d 100644 --- a/tests/tadd.c +++ b/tests/tadd.c @@ -512,7 +512,7 @@ check_inexact (void) mpfr_set_prec (x, px); do { - mpfr_random (x); + mpfr_urandomb (x, RANDS); } while (mpfr_cmp_ui (x, 0) == 0); for (pu=2; pu<MAX_PREC; pu++) @@ -520,7 +520,7 @@ check_inexact (void) mpfr_set_prec (u, pu); do { - mpfr_random (u); + mpfr_urandomb (u, RANDS); } while (mpfr_cmp_ui (u, 0) == 0); { |