aGrUM 2.3.2
a C++ library for (probabilistic) graphical models
utils_misc.h
Go to the documentation of this file.
1/****************************************************************************
2 * This file is part of the aGrUM/pyAgrum library. *
3 * *
4 * Copyright (c) 2005-2025 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-2025 *
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
48
49#ifndef GUM_UTILS_H
50#define GUM_UTILS_H
51
52#include <cstdlib>
53#include <iostream>
54#include <numeric>
55#include <string>
56#include <tuple>
57#include <utility>
58#include <vector>
59
60#include <type_traits>
61
62
63#ifdef GUM_DEBUG_MODE
64# define GUM_CAST dynamic_cast
65#else
66# define GUM_CAST static_cast
67#endif // GUM_DEBUG_MODE
68
69#include <agrum/agrum.h>
70
73
74namespace std {
75
78
87 template < typename T1, typename T2 >
88 ostream& operator<<(ostream& stream, const pair< T1, T2 >& val);
89
97 template < typename T0, typename... T >
98 std::ostream& operator<<(std::ostream& os, const std::tuple< T0, T... >& t);
99
100
108 template < typename T >
109 ostream& operator<<(ostream& stream, const vector< T >& val);
110
117 template < typename T >
118 bool hasUniqueElts(std::vector< T > const& x);
119
121
122} /* namespace std */
123
124namespace gum {
125
128
142 template < typename T1, typename T2 >
143 using forbidden_type = typename std::enable_if< !std::is_same< T1, T2 >::value, int >::type;
144
148 struct NullStream: std::ostream {
149 NullStream() : std::ios(0), std::ostream(0) {}
150 };
151
159 bool Memcmp(const void* const in_, const void* const out_, unsigned long size);
160
164 void _atexit_();
165
170 template < typename T >
172 bool operator()(const T& t1, const T& t2) {
173 if (t1 == t2) return false;
174 else if (t1 == 0) return (std::abs(t2) > 1e-5);
175 else return (std::abs(t2 - t1) / t1 > 1e-5);
176 }
177 };
178
183 template < typename T >
184 struct AlmostDifferent< T* > {
185 bool operator()(const T* t1, const T* t2) { return (t1 != t2); }
186 };
187
189
190} /* namespace gum */
191
192// Always include the template implementations
194
195#endif /* GUM_UTILS_H */
bool Memcmp(const void *const in_, const void *const out_, unsigned long size)
Cross-platform replacement for memcmp.
bool hasUniqueElts(std::vector< T > const &x)
void _atexit_()
Used for debug purpose.
typename std::enable_if< !std::is_same< T1, T2 >::value, int >::type forbidden_type
Forbidden_type<T1,T2> return the "int" type if T1 and T2 are of the same type, else nothing.
Definition utils_misc.h:143
gum is the global namespace for all aGrUM entities
Definition agrum.h:46
STL namespace.
std::ostream & operator<<(std::ostream &os, const std::tuple<> &)
bool operator()(const T *t1, const T *t2)
Definition utils_misc.h:185
Indicate whether two elements are (almost) different or not.
Definition utils_misc.h:171
bool operator()(const T &t1, const T &t2)
Definition utils_misc.h:172
Template implementation for utilities for aGrUM.
Contains useful methods for random stuff.
Utilities for manipulating strings.