libstdc++
uniform_int_dist.h
Go to the documentation of this file.
1// Class template uniform_int_distribution -*- C++ -*-
2
3// Copyright (C) 2009-2026 Free Software Foundation, Inc.
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 3, or (at your option)
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
16// Under Section 7 of GPL version 3, you are granted additional
17// permissions described in the GCC Runtime Library Exception, version
18// 3.1, as published by the Free Software Foundation.
19
20// You should have received a copy of the GNU General Public License and
21// a copy of the GCC Runtime Library Exception along with this program;
22// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23// <http://www.gnu.org/licenses/>.
24
25/**
26 * @file bits/uniform_int_dist.h
27 * This is an internal header file, included by other library headers.
28 * Do not attempt to use it directly. @headername{random}
29 */
30
31#ifndef _GLIBCXX_BITS_UNIFORM_INT_DIST_H
32#define _GLIBCXX_BITS_UNIFORM_INT_DIST_H
33
34#include <type_traits>
35#include <ext/numeric_traits.h>
36#if __cplusplus > 201703L
37# include <concepts>
38#endif
39#include <bits/concept_check.h> // __glibcxx_function_requires
40
41namespace std _GLIBCXX_VISIBILITY(default)
42{
43_GLIBCXX_BEGIN_NAMESPACE_VERSION
44
45#ifdef __cpp_lib_concepts
46 /// Requirements for a uniform random bit generator.
47 /**
48 * @ingroup random_distributions_uniform
49 * @headerfile random
50 * @since C++20
51 */
52 template<typename _Gen>
54 = invocable<_Gen&> && unsigned_integral<invoke_result_t<_Gen&>>
55 && requires
56 {
57 { _Gen::min() } -> same_as<invoke_result_t<_Gen&>>;
58 { _Gen::max() } -> same_as<invoke_result_t<_Gen&>>;
59 requires bool_constant<(_Gen::min() < _Gen::max())>::value;
60 };
61#endif
62
63 /// @cond undocumented
64 namespace __detail
65 {
66 // Determine whether number is a power of two.
67 // This is true for zero, which is OK because we want _Power_of_2(n+1)
68 // to be true if n==numeric_limits<_Tp>::max() and so n+1 wraps around.
69 template<typename _Tp>
70 constexpr bool
71 _Power_of_2(_Tp __x)
72 {
73 return ((__x - 1) & __x) == 0;
74 }
75 }
76 /// @endcond
77
78 /**
79 * @brief Uniform discrete distribution for random numbers.
80 * A discrete random distribution on the range @f$[min, max]@f$ with equal
81 * probability throughout the range.
82 *
83 * @ingroup random_distributions_uniform
84 * @headerfile random
85 * @since C++11
86 */
87 template<typename _IntType = int>
89 {
91 "template argument must be an integral type");
92
93 public:
94 /** The type of the range of the distribution. */
95 typedef _IntType result_type;
96 /** Parameter type. */
97 struct param_type
98 {
99 typedef uniform_int_distribution<_IntType> distribution_type;
100
101 param_type() : param_type(0) { }
102
103 explicit
104 param_type(_IntType __a,
105 _IntType __b = __gnu_cxx::__int_traits<_IntType>::__max)
106 : _M_a(__a), _M_b(__b)
107 {
108 __glibcxx_assert(_M_a <= _M_b);
109 }
110
112 a() const
113 { return _M_a; }
114
116 b() const
117 { return _M_b; }
118
119 friend bool
120 operator==(const param_type& __p1, const param_type& __p2)
121 { return __p1._M_a == __p2._M_a && __p1._M_b == __p2._M_b; }
122
123 friend bool
124 operator!=(const param_type& __p1, const param_type& __p2)
125 { return !(__p1 == __p2); }
126
127 private:
128 _IntType _M_a;
129 _IntType _M_b;
130 };
131
132 public:
133 /**
134 * @brief Constructs a uniform distribution object.
135 */
137
138 /**
139 * @brief Constructs a uniform distribution object.
140 */
141 explicit
143 _IntType __b
144 = __gnu_cxx::__int_traits<_IntType>::__max)
145 : _M_param(__a, __b)
146 { }
147
148 explicit
149 uniform_int_distribution(const param_type& __p)
150 : _M_param(__p)
151 { }
152
153 /**
154 * @brief Resets the distribution state.
155 *
156 * Does nothing for the uniform integer distribution.
157 */
158 void
159 reset() { }
160
161 result_type
162 a() const
163 { return _M_param.a(); }
164
165 result_type
166 b() const
167 { return _M_param.b(); }
168
169 /**
170 * @brief Returns the parameter set of the distribution.
171 */
173 param() const
174 { return _M_param; }
175
176 /**
177 * @brief Sets the parameter set of the distribution.
178 * @param __param The new parameter set of the distribution.
179 */
180 void
181 param(const param_type& __param)
182 { _M_param = __param; }
183
184 /**
185 * @brief Returns the inclusive lower bound of the distribution range.
186 */
187 result_type
188 min() const
189 { return this->a(); }
190
191 /**
192 * @brief Returns the inclusive upper bound of the distribution range.
193 */
194 result_type
195 max() const
196 { return this->b(); }
197
198 /**
199 * @brief Generating functions.
200 */
201 template<typename _UniformRandomBitGenerator>
202 result_type
203 operator()(_UniformRandomBitGenerator& __urng)
204 { return this->operator()(__urng, _M_param); }
205
206 template<typename _UniformRandomBitGenerator>
207 result_type
208 operator()(_UniformRandomBitGenerator& __urng,
209 const param_type& __p);
210
211 template<typename _ForwardIterator,
212 typename _UniformRandomBitGenerator>
213 void
214 __generate(_ForwardIterator __f, _ForwardIterator __t,
215 _UniformRandomBitGenerator& __urng)
216 { this->__generate(__f, __t, __urng, _M_param); }
217
218 template<typename _ForwardIterator,
219 typename _UniformRandomBitGenerator>
220 void
221 __generate(_ForwardIterator __f, _ForwardIterator __t,
222 _UniformRandomBitGenerator& __urng,
223 const param_type& __p)
224 { this->__generate_impl(__f, __t, __urng, __p); }
225
226 template<typename _UniformRandomBitGenerator>
227 void
228 __generate(result_type* __f, result_type* __t,
229 _UniformRandomBitGenerator& __urng,
230 const param_type& __p)
231 { this->__generate_impl(__f, __t, __urng, __p); }
232
233 /**
234 * @brief Return true if two uniform integer distributions have
235 * the same parameters.
236 */
237 friend bool
239 const uniform_int_distribution& __d2)
240 { return __d1._M_param == __d2._M_param; }
241
242 private:
243 template<typename _ForwardIterator,
244 typename _UniformRandomBitGenerator>
245 void
246 __generate_impl(_ForwardIterator __f, _ForwardIterator __t,
247 _UniformRandomBitGenerator& __urng,
248 const param_type& __p);
249
250 param_type _M_param;
251
252 // Lemire's nearly divisionless algorithm.
253 // Returns an unbiased random number from __g downscaled to [0,__range)
254 // using an unsigned type _Wp twice as wide as unsigned type _Up.
255 template<typename _Wp, typename _Urbg, typename _Up>
256 static _Up
257 _S_nd(_Urbg& __g, _Up __range)
258 {
259 using _Up_traits = __gnu_cxx::__int_traits<_Up>;
260 using _Wp_traits = __gnu_cxx::__int_traits<_Wp>;
261 static_assert(!_Up_traits::__is_signed, "U must be unsigned");
262 static_assert(!_Wp_traits::__is_signed, "W must be unsigned");
263 static_assert(_Wp_traits::__digits == (2 * _Up_traits::__digits),
264 "W must be twice as wide as U");
265 constexpr auto __min = _Urbg::min();
266
267 // reference: Fast Random Integer Generation in an Interval
268 // ACM Transactions on Modeling and Computer Simulation 29 (1), 2019
269 // https://arxiv.org/abs/1805.10941
270 _Wp __product = _Wp(__g() - __min) * _Wp(__range);
271 _Up __low = _Up(__product);
272 if (__low < __range)
273 {
274 _Up __threshold = -__range % __range;
275 while (__low < __threshold)
276 {
277 __product = _Wp(__g() - __min) * _Wp(__range);
278 __low = _Up(__product);
279 }
280 }
281 return __product >> _Up_traits::__digits;
282 }
283 };
284
285 template<typename _IntType>
286 template<typename _UniformRandomBitGenerator>
289 operator()(_UniformRandomBitGenerator& __urng,
290 const param_type& __param)
291 {
292 typedef decltype(__urng()) _Gresult_type;
293 typedef typename make_unsigned<result_type>::type __utype;
294 typedef typename common_type<_Gresult_type, __utype>::type __uctype;
295
296 constexpr __uctype __urngmin = _UniformRandomBitGenerator::min();
297 constexpr __uctype __urngmax = _UniformRandomBitGenerator::max();
298 static_assert( __urngmin < __urngmax,
299 "Uniform random bit generator must define min() < max()");
300 constexpr __uctype __urngrange = __urngmax - __urngmin;
301
302 const __uctype __urange
303 = __uctype(__param.b()) - __uctype(__param.a());
304
305 __uctype __ret;
306 if (__urngrange > __urange)
307 {
308 // downscaling
309
310 const __uctype __uerange = __urange + 1; // __urange can be zero
311
312#pragma GCC diagnostic push
313#pragma GCC diagnostic ignored "-Wc++17-extensions" // if constexpr
314#if defined __UINT64_TYPE__ && defined __UINT32_TYPE__
315#if __SIZEOF_INT128__
316 if constexpr (__urngrange == __UINT64_MAX__)
317 {
318 // __urng produces values that use exactly 64-bits,
319 // so use 128-bit integers to downscale to desired range.
320 __UINT64_TYPE__ __u64erange = __uerange;
321 __ret = __extension__ _S_nd<unsigned __int128>(__urng,
322 __u64erange);
323 }
324 else
325#endif
326 if constexpr (__urngrange == __UINT32_MAX__)
327 {
328 // __urng produces values that use exactly 32-bits,
329 // so use 64-bit integers to downscale to desired range.
330 __UINT32_TYPE__ __u32erange = __uerange;
331 __ret = _S_nd<__UINT64_TYPE__>(__urng, __u32erange);
332 }
333 else
334#endif
335 {
336 // fallback case (2 divisions)
337 const __uctype __scaling = __urngrange / __uerange;
338 const __uctype __past = __uerange * __scaling;
339 do
340 __ret = __uctype(__urng()) - __urngmin;
341 while (__ret >= __past);
342 __ret /= __scaling;
343 }
344#pragma GCC diagnostic pop
345 }
346 else if (__urngrange < __urange)
347 {
348 // upscaling
349 /*
350 Note that every value in [0, urange]
351 can be written uniquely as
352
353 (urngrange + 1) * high + low
354
355 where
356
357 high in [0, urange / (urngrange + 1)]
358
359 and
360
361 low in [0, urngrange].
362 */
363 __uctype __tmp; // wraparound control
364 do
365 {
366 const __uctype __uerngrange = __urngrange + 1;
367 __tmp = (__uerngrange * operator()
368 (__urng, param_type(0, __urange / __uerngrange)));
369 __ret = __tmp + (__uctype(__urng()) - __urngmin);
370 }
371 while (__ret > __urange || __ret < __tmp);
372 }
373 else
374 __ret = __uctype(__urng()) - __urngmin;
375
376 return __ret + __param.a();
377 }
378
379
380 template<typename _IntType>
381 template<typename _ForwardIterator,
382 typename _UniformRandomBitGenerator>
383 void
385 __generate_impl(_ForwardIterator __f, _ForwardIterator __t,
386 _UniformRandomBitGenerator& __urng,
387 const param_type& __param)
388 {
389 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
390 typedef decltype(__urng()) _Gresult_type;
391 typedef typename make_unsigned<result_type>::type __utype;
392 typedef typename common_type<_Gresult_type, __utype>::type __uctype;
393
394 static_assert( __urng.min() < __urng.max(),
395 "Uniform random bit generator must define min() < max()");
396
397 constexpr __uctype __urngmin = __urng.min();
398 constexpr __uctype __urngmax = __urng.max();
399 constexpr __uctype __urngrange = __urngmax - __urngmin;
400 const __uctype __urange
401 = __uctype(__param.b()) - __uctype(__param.a());
402
403 __uctype __ret;
404
405 if (__urngrange > __urange)
406 {
407 if (__detail::_Power_of_2(__urngrange + 1)
408 && __detail::_Power_of_2(__urange + 1))
409 {
410 while (__f != __t)
411 {
412 __ret = __uctype(__urng()) - __urngmin;
413 *__f++ = (__ret & __urange) + __param.a();
414 }
415 }
416 else
417 {
418 // downscaling
419 const __uctype __uerange = __urange + 1; // __urange can be zero
420 const __uctype __scaling = __urngrange / __uerange;
421 const __uctype __past = __uerange * __scaling;
422 while (__f != __t)
423 {
424 do
425 __ret = __uctype(__urng()) - __urngmin;
426 while (__ret >= __past);
427 *__f++ = __ret / __scaling + __param.a();
428 }
429 }
430 }
431 else if (__urngrange < __urange)
432 {
433 // upscaling
434 /*
435 Note that every value in [0, urange]
436 can be written uniquely as
437
438 (urngrange + 1) * high + low
439
440 where
441
442 high in [0, urange / (urngrange + 1)]
443
444 and
445
446 low in [0, urngrange].
447 */
448 __uctype __tmp; // wraparound control
449 while (__f != __t)
450 {
451 do
452 {
453 constexpr __uctype __uerngrange = __urngrange + 1;
454 __tmp = (__uerngrange * operator()
455 (__urng, param_type(0, __urange / __uerngrange)));
456 __ret = __tmp + (__uctype(__urng()) - __urngmin);
457 }
458 while (__ret > __urange || __ret < __tmp);
459 *__f++ = __ret;
460 }
461 }
462 else
463 while (__f != __t)
464 *__f++ = __uctype(__urng()) - __urngmin + __param.a();
465 }
466
467 // operator!= and operator<< and operator>> are defined in <bits/random.h>
468
469_GLIBCXX_END_NAMESPACE_VERSION
470} // namespace std
471
472#endif
ISO C++ entities toplevel namespace is std.
Implementation details not part of the namespace std interface.
__numeric_traits_integer< _Tp > __int_traits
Convenience alias for __numeric_traits<integer-type>.
is_integral
Definition type_traits:541
common_type
Definition type_traits:2577
Uniform discrete distribution for random numbers. A discrete random distribution on the range with e...
void reset()
Resets the distribution state.
uniform_int_distribution()
Constructs a uniform distribution object.
void param(const param_type &__param)
Sets the parameter set of the distribution.
result_type min() const
Returns the inclusive lower bound of the distribution range.
friend bool operator==(const uniform_int_distribution &__d1, const uniform_int_distribution &__d2)
Return true if two uniform integer distributions have the same parameters.
result_type max() const
Returns the inclusive upper bound of the distribution range.
result_type operator()(_UniformRandomBitGenerator &__urng)
Generating functions.
uniform_int_distribution(_IntType __a, _IntType __b=__gnu_cxx::__int_traits< _IntType >::__max)
Constructs a uniform distribution object.
param_type param() const
Returns the parameter set of the distribution.
[concept.same], concept same_as
Definition concepts:65
[concept.invocable], concept invocable
Definition concepts:383
Requirements for a uniform random bit generator.