blob: 2c72540c1c324a736cc9896d2b50ea0a8275f261 [file] [log] [blame]
Austin Schuhbb1338c2024-06-15 19:31:16 -07001/* mpz_random2 -- Generate a positive random mpz_t of specified size, with
2 long runs of consecutive ones and zeros in the binary representation.
3 Meant for testing of other MP routines.
4
5Copyright 1991, 1993, 1994, 1996, 2001, 2012, 2015 Free Software
6Foundation, Inc.
7
8This file is part of the GNU MP Library.
9
10The GNU MP Library is free software; you can redistribute it and/or modify
11it under the terms of either:
12
13 * the GNU Lesser General Public License as published by the Free
14 Software Foundation; either version 3 of the License, or (at your
15 option) any later version.
16
17or
18
19 * the GNU General Public License as published by the Free Software
20 Foundation; either version 2 of the License, or (at your option) any
21 later version.
22
23or both in parallel, as here.
24
25The GNU MP Library is distributed in the hope that it will be useful, but
26WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
27or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
28for more details.
29
30You should have received copies of the GNU General Public License and the
31GNU Lesser General Public License along with the GNU MP Library. If not,
32see https://www.gnu.org/licenses/. */
33
34#include "gmp-impl.h"
35
36void
37mpz_random2 (mpz_ptr x, mp_size_t size)
38{
39 mp_size_t abs_size;
40 mp_ptr xp;
41
42 abs_size = ABS (size);
43 if (abs_size != 0)
44 {
45 xp = MPZ_NEWALLOC (x, abs_size);
46
47 mpn_random2 (xp, abs_size);
48 }
49
50 SIZ (x) = size;
51}