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/tsqr.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/tsqr.c')
-rw-r--r-- | tests/tsqr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tsqr.c b/tests/tsqr.c index 9afef9a00..729c82989 100644 --- a/tests/tsqr.c +++ b/tests/tsqr.c @@ -66,7 +66,7 @@ check_random (mpfr_prec_t p) mpfr_inits2 (p, x, y, z, (mpfr_ptr) 0); for(i = 0 ; i < 500 ; i++) { - mpfr_random (x); + mpfr_urandomb (x, RANDS); if (MPFR_IS_PURE_FP(x)) for (r = 0 ; r < GMP_RND_MAX ; r++) { |