beta-0.89.2
[luatex.git] / source / libs / gmp / gmp-src / mpf / random2.c
blob4d7f37e976dcd76af05c2f780a1fd16a9bfdf097
1 /* mpf_random2 -- Generate a positive random mpf_t of specified size, with
2 long runs of consecutive ones and zeros in the binary representation.
3 Intended for testing of other MP routines.
5 Copyright 1995, 1996, 2001-2003 Free Software Foundation, Inc.
7 This file is part of the GNU MP Library.
9 The GNU MP Library is free software; you can redistribute it and/or modify
10 it under the terms of either:
12 * the GNU Lesser General Public License as published by the Free
13 Software Foundation; either version 3 of the License, or (at your
14 option) any later version.
18 * the GNU General Public License as published by the Free Software
19 Foundation; either version 2 of the License, or (at your option) any
20 later version.
22 or both in parallel, as here.
24 The GNU MP Library is distributed in the hope that it will be useful, but
25 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
26 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
27 for more details.
29 You should have received copies of the GNU General Public License and the
30 GNU Lesser General Public License along with the GNU MP Library. If not,
31 see https://www.gnu.org/licenses/. */
33 #include "gmp.h"
34 #include "gmp-impl.h"
37 void
38 mpf_random2 (mpf_ptr x, mp_size_t xs, mp_exp_t exp)
40 mp_size_t xn;
41 mp_size_t prec;
42 mp_limb_t elimb;
44 xn = ABS (xs);
45 prec = PREC(x);
47 if (xn == 0)
49 EXP(x) = 0;
50 SIZ(x) = 0;
51 return;
54 if (xn > prec + 1)
55 xn = prec + 1;
57 /* General random mantissa. */
58 mpn_random2 (PTR(x), xn);
60 /* Generate random exponent. */
61 _gmp_rand (&elimb, RANDS, GMP_NUMB_BITS);
62 exp = ABS (exp);
63 exp = elimb % (2 * exp + 1) - exp;
65 EXP(x) = exp;
66 SIZ(x) = xs < 0 ? -xn : xn;