aGrUM 2.3.2
a C++ library for (probabilistic) graphical models
gammaLog2.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#ifndef GUM_GAMMA_LOG2_H
49#define GUM_GAMMA_LOG2_H
50
51#define USE_MATH_DEFINES_ // for Visual C++
52
53#include <limits>
54#include <vector>
55
56#include <agrum/agrum.h>
57
59
60namespace gum {
61
68 class GammaLog2 {
69 public:
70 // ============================================================================
72 // ============================================================================
74
79 explicit GammaLog2(bool requires_precision = false);
80
85 GammaLog2(const GammaLog2& from);
86
91 GammaLog2(GammaLog2&& from);
92
96 ~GammaLog2();
97
99 // ============================================================================
101 // ============================================================================
103
108 double operator()(double x) const;
109
114 void setPrecision(bool p);
115
117 // ============================================================================
119 // ============================================================================
121
128 double gammaLog2(double x) const;
129
131
132 private:
135
137 static constexpr double _inv_log2_{M_LOG2E};
138
140 static constexpr double _log_sqrt_2pi_{GUM_LOG_SQRT_2PI};
141
143 static const std::vector< double > _small_values_;
144 };
145
146} /* namespace gum */
147
148#ifndef GUM_NO_INLINE
150#endif // GUM_NO_INLINE
151
152#endif /* GUM_GAMMA_LOG2_H */
static constexpr double _log_sqrt_2pi_
The value of std::log ( std::sqrt(2pi) ).
Definition gammaLog2.h:140
static constexpr double _inv_log2_
The value of 1 / std::log(2).
Definition gammaLog2.h:137
bool _requires_precision_
Indicates whether we need more precision for small values.
Definition gammaLog2.h:134
double gammaLog2(double x) const
Returns log2 ( gamma (x) ) for x >= 0.
static const std::vector< double > _small_values_
The 5000 values from 0 to 50 by step of 1/100.
Definition gammaLog2.h:143
double operator()(double x) const
Returns log2 ( gamma (x) ) for x > 0.
void setPrecision(bool p)
Sets whether we need more precision for small values.
~GammaLog2()
Class destructor.
Definition gammaLog2.cpp:73
GammaLog2(bool requires_precision=false)
Default constructor.
Definition gammaLog2.cpp:58
The class for computing Log2 (Gamma(x)).
Useful macros for maths.
#define GUM_LOG_SQRT_2PI
Definition math_utils.h:67
#define M_LOG2E
Definition math_utils.h:55
gum is the global namespace for all aGrUM entities
Definition agrum.h:46