summaryrefslogtreecommitdiff
path: root/tests/tmul_ui.c
diff options
context:
space:
mode:
authorthevenyp <thevenyp@280ebfd0-de03-0410-8827-d642c229c3f4>2008-09-18 16:33:16 +0000
committerthevenyp <thevenyp@280ebfd0-de03-0410-8827-d642c229c3f4>2008-09-18 16:33:16 +0000
commit887678b6cee0e89e40df2b3c3a1cb8e0713292fd (patch)
tree4fda1c8c4d3e2743d3f3ff10161706077d1d7646 /tests/tmul_ui.c
parent0f0fceda1553e7fd6729db25f910666873bc76a0 (diff)
downloadmpfr-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/tmul_ui.c')
-rw-r--r--tests/tmul_ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tmul_ui.c b/tests/tmul_ui.c
index ad86fd621..f95865291 100644
--- a/tests/tmul_ui.c
+++ b/tests/tmul_ui.c
@@ -37,7 +37,7 @@ check_inexact (mp_prec_t p)
mpfr_init2 (x, p);
mpfr_init (y);
mpfr_init2 (z, p + mp_bits_per_limb);
- mpfr_random (x);
+ mpfr_urandomb (x, RANDS);
u = randlimb ();
if (mpfr_mul_ui (z, x, u, GMP_RNDN))
{