aGrUM 3.1.1
a C++ library for (probabilistic) graphical models
weightedSampling_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-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
53
54namespace gum {
55
56
58 template < GUM_Numeric GUM_SCALAR >
63
65 template < GUM_Numeric GUM_SCALAR >
69
71 template < GUM_Numeric GUM_SCALAR >
76
77 template < GUM_Numeric GUM_SCALAR >
79 *w = 1.0f;
80 bool wrongValue = false;
81 do {
82 prev.clear();
83 wrongValue = false;
84 *w = 1.0f;
85
86 for (const auto nod: this->BN().topologicalOrder()) {
87 if (this->hardEvidenceNodes().contains(nod)) {
88 prev.add(this->BN().variable(nod));
89 prev.chgVal(this->BN().variable(nod), this->hardEvidence()[nod]);
90 auto localp = this->BN().cpt(nod).get(prev);
91
92 if (localp == 0) {
93 wrongValue = true;
94 break;
95 }
96
97 *w *= localp;
98 } else {
99 this->addVarSample_(nod, &prev);
100 }
101 }
102 } while (wrongValue);
103 return prev;
104 }
105} // namespace gum
virtual const IBayesNet< GUM_SCALAR > & BN() const final
Returns a constant reference over the IBayesNet referenced by this class.
const NodeProperty< Idx > & hardEvidence() const
indicate for each node with hard evidence which value it took
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.
Instantiation & chgVal(const DiscreteVariable &v, Idx newval)
Assign newval to variable v in the Instantiation.
void clear()
Erase all variables from an Instantiation.
void add(const DiscreteVariable &v) final
Adds a new variable in the Instantiation.
virtual void addVarSample_(NodeId nod, Instantiation *I)
adds a node to current instantiation
SamplingInference(const IBayesNet< GUM_SCALAR > *bn)
default constructor
WeightedSampling(const IBayesNet< GUM_SCALAR > *bn)
Default constructor.
Instantiation draw_(GUM_SCALAR *w, Instantiation prev) override
draws a sample according to Weighted sampling
Instantiation burnIn_() override
draws a defined number of samples without updating the estimators
~WeightedSampling() override
Destructor.
bool contains(std::string_view s, std::string_view needle)
true if needle in s
gum is the global namespace for all aGrUM entities
Definition agrum.h:46
This file contains Weighted sampling class definition.