aGrUM 3.1.1
a C++ library for (probabilistic) graphical models
utils_random_inl.h
Go to the documentation of this file.
1/****************************************************************************
2 * This file is part of the aGrUM/pyAgrum library. *
3 * *
4 * Copyright (c) 2005-2026 by *
5 * - Pierre-Henri WUILLEMIN(_at_LIP6) *
6 * - Christophe GONZALES(_at_AMU) *
7 * *
8 * The aGrUM/pyAgrum library is free software; you can redistribute it *
9 * and/or modify it under the terms of either : *
10 * *
11 * - the GNU Lesser General Public License as published by *
12 * the Free Software Foundation, either version 3 of the License, *
13 * or (at your option) any later version, *
14 * - the MIT license (MIT), *
15 * - or both in dual license, as here. *
16 * *
17 * (see https://agrum.gitlab.io/articles/dual-licenses-lgplv3mit.html) *
18 * *
19 * This aGrUM/pyAgrum library is distributed in the hope that it will be *
20 * useful, but WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, *
21 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES MERCHANTABILITY or FITNESS *
22 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE *
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, *
25 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR *
26 * OTHER DEALINGS IN THE SOFTWARE. *
27 * *
28 * See LICENCES for more details. *
29 * *
30 * SPDX-FileCopyrightText: Copyright 2005-2026 *
31 * - Pierre-Henri WUILLEMIN(_at_LIP6) *
32 * - Christophe GONZALES(_at_AMU) *
33 * SPDX-License-Identifier: LGPL-3.0-or-later OR MIT *
34 * *
35 * Contact : info_at_agrum_dot_org *
36 * homepage : http://agrum.gitlab.io *
37 * gitlab : https://gitlab.com/agrumery/agrum *
38 * *
39 ****************************************************************************/
40
41#pragma once
42
43
50
51// to ease IDE parser
52#include <random>
53
55
56namespace gum {
57 namespace _rand_namespace_ {
58 INLINE
59 std::mt19937& generator() {
60 static std::mt19937 Generator_;
61 return Generator_;
62 }
63 } // namespace _rand_namespace_
64
65 INLINE
66 Idx randomValue(const Size max) {
67 if (max == 0) { GUM_ERROR(OutOfBounds, "randomValue: max must be > 0") }
68 std::uniform_int_distribution< Idx > uni_int(0, int(max) - 1);
69 return uni_int(_rand_namespace_::generator());
70 }
71
72 INLINE
73 double randomProba() {
74 std::uniform_real_distribution uni_real(0.0, 1.0);
75 return uni_real(_rand_namespace_::generator());
76 }
77
78 INLINE
79 void initRandom(unsigned int seed) {
80 if (seed == 0) seed = (unsigned int)std::chrono::system_clock::now().time_since_epoch().count();
81 std::seed_seq seq{seed + 1, seed + 2, seed + 3, seed + 4, seed + 5};
83 }
84
86 INLINE
88
89 // returns the aGrUM's seed used by the std::generators
90 INLINE
91 unsigned int randomGeneratorSeed() {
92 return (unsigned int)((GUM_RANDOMSEED == 0)
93 ? std::chrono::system_clock::now().time_since_epoch().count()
94 : GUM_RANDOMSEED);
95 }
96
97 INLINE
98 std::mt19937& randomGenerator() { return _rand_namespace_::generator(); }
99} // namespace gum
Exception : out of bound.
#define GUM_ERROR(type, msg)
Definition exceptions.h:76
std::size_t Size
In aGrUM, hashed values are unsigned long int.
Definition types.h:74
Size Idx
Type for indexes.
Definition types.h:79
Idx randomValue(const Size max=2)
Returns a random Idx between 0 and max-1 included.
unsigned int randomGeneratorSeed()
Returns the aGrUM's seed used by the std::generators.
void initRandom(unsigned int seed=0)
Initialize random generator seed.
std::mt19937 & randomGenerator()
define a random_engine with correct seed
unsigned int currentRandomGeneratorValue()
returns the current generator's value
double randomProba()
Returns a random double between 0 and 1 included (i.e.
std::mt19937 & generator()
gum is the global namespace for all aGrUM entities
Definition agrum.h:46
Contains useful methods for random stuff.