aGrUM 2.3.2
a C++ library for (probabilistic) graphical models
MonteCarloSampling_tpl.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#pragma once
41
42
50
51
53
54namespace gum {
55
57 template < typename GUM_SCALAR >
62
64 template < typename GUM_SCALAR >
68
70 template < typename GUM_SCALAR >
75
76 template < typename GUM_SCALAR >
78 *w = 1.0f;
79 bool wrong_value = false;
80 do {
81 wrong_value = false;
82 prev.clear();
83 for (const auto nod: this->BN().topologicalOrder()) {
84 this->addVarSample_(nod, &prev);
85 if (this->hardEvidenceNodes().contains(nod)
86 && prev.val(this->BN().variable(nod)) != this->hardEvidence()[nod]) {
87 wrong_value = true;
88 break;
89 }
90 }
91 } while (wrong_value);
92 return prev;
93 }
94} // namespace gum
This file contains Monte Carlo sampling class definition.
virtual const IBayesNet< GUM_SCALAR > & BN() const final
Returns a constant reference over the IBayesNet referenced by this class.
const NodeSet & hardEvidenceNodes() const
returns the set of nodes with hard evidence
Class representing the minimal interface for Bayesian network with no numerical data.
Definition IBayesNet.h:75
Class for assigning/browsing values to tuples of discrete variables.
void clear()
Erase all variables from an Instantiation.
Idx val(Idx i) const
Returns the current value of the variable at position i.
Instantiation draw_(GUM_SCALAR *w, Instantiation prev) override
draws a sample according to classic Monte Carlo sampling
MonteCarloSampling(const IBayesNet< GUM_SCALAR > *bn)
Default constructor.
~MonteCarloSampling() override
Destructor.
Instantiation burnIn_() override
draws a defined number of samples without updating the estimators
virtual void addVarSample_(NodeId nod, Instantiation *I)
adds a node to current instantiation
SamplingInference(const IBayesNet< GUM_SCALAR > *bn)
default constructor
gum is the global namespace for all aGrUM entities
Definition agrum.h:46