aGrUM 2.3.2
a C++ library for (probabilistic) graphical models
dSeparationAlgorithm.cpp
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
51
52#ifdef GUM_NO_INLINE
54#endif // GUM_NO_INLINE
55
56namespace gum {
57
58 // Fill 'requisite' with the requisite nodes in dag given a query and
59 // evidence.
61 const NodeSet& query,
62 const NodeSet& hardEvidence,
63 const NodeSet& softEvidence,
64 NodeSet& requisite) const {
65 // for the moment, no node is requisite
66 requisite.clear();
67
68 // mark the set of ancestors of the evidence
69 NodeSet ev_ancestors(dag.size());
70 {
71 List< NodeId > anc_to_visit;
72 for (const auto node: hardEvidence)
73 anc_to_visit.insert(node);
74 for (const auto node: softEvidence)
75 anc_to_visit.insert(node);
76 while (!anc_to_visit.empty()) {
77 const NodeId node = anc_to_visit.front();
78 anc_to_visit.popFront();
79
80 if (!ev_ancestors.exists(node)) {
81 ev_ancestors.insert(node);
82 for (const auto par: dag.parents(node)) {
83 anc_to_visit.insert(par);
84 }
85 }
86 }
87 }
88
89 // create the marks indicating that we have visited a node
90 NodeSet visited_from_child(dag.size());
91 NodeSet visited_from_parent(dag.size());
92
93 // indicate that we will send the ball to all the query nodes (as children):
94 // in list nodes_to_visit, the first element is the next node to send the
95 // ball to and the Boolean indicates whether we shall reach it from one of
96 // its children (true) or from one parent (false)
97 List< std::pair< NodeId, bool > > nodes_to_visit;
98 for (const auto node: query) {
99 nodes_to_visit.insert(std::pair< NodeId, bool >(node, true));
100 }
101
102 // perform the bouncing ball until there is no node in the graph to send
103 // the ball to
104 while (!nodes_to_visit.empty()) {
105 // get the next node to visit
106 const NodeId node = nodes_to_visit.front().first;
107 const bool direction = nodes_to_visit.front().second;
108 nodes_to_visit.popFront();
109
110 // check if the node has not already been visited in the same direction
111 bool already_visited;
112 if (direction) {
113 already_visited = visited_from_child.exists(node);
114 if (!already_visited) { visited_from_child.insert(node); }
115 } else {
116 already_visited = visited_from_parent.exists(node);
117 if (!already_visited) { visited_from_parent.insert(node); }
118 }
119
120 // if this is the first time we meet the node, then visit it
121 if (!already_visited) {
122 // mark the node as reachable if this is not a hard evidence
123 const bool is_hard_evidence = hardEvidence.exists(node);
124 if (!is_hard_evidence) { requisite.insert(node); }
125
126 // bounce the ball toward the neighbors
127 if (direction && !is_hard_evidence) { // visit from a child
128 // visit the parents
129 for (const auto par: dag.parents(node)) {
130 nodes_to_visit.insert(std::pair< NodeId, bool >(par, true));
131 }
132
133 // visit the children
134 for (const auto chi: dag.children(node)) {
135 nodes_to_visit.insert(std::pair< NodeId, bool >(chi, false));
136 }
137 } else { // visit from a parent
138 if (!hardEvidence.exists(node)) {
139 // visit the children
140 for (const auto chi: dag.children(node)) {
141 nodes_to_visit.insert(std::pair< NodeId, bool >(chi, false));
142 }
143 }
144 if (ev_ancestors.exists(node)) {
145 // visit the parents
146 for (const auto par: dag.parents(node)) {
147 nodes_to_visit.insert(std::pair< NodeId, bool >(par, true));
148 }
149 }
150 }
151 }
152 }
153 }
154
155} /* namespace gum */
const NodeSet & parents(NodeId id) const
returns the set of nodes with arc ingoing to a given node
NodeSet children(const NodeSet &ids) const
returns the set of children of a set of nodes
Base class for dag.
Definition DAG.h:121
Generic doubly linked lists.
Definition list.h:379
Val & front() const
Returns a reference to first element of a list, if any.
Definition list_tpl.h:1703
bool empty() const noexcept
Returns a boolean indicating whether the chained list is empty.
Definition list_tpl.h:1831
void popFront()
Removes the first element of a List, if any.
Definition list_tpl.h:1825
Val & insert(const Val &val)
Inserts a new element at the end of the chained list (alias of pushBack).
Definition list_tpl.h:1515
Size size() const
alias for sizeNodes
bool exists(const Key &k) const
Indicates whether a given elements belong to the set.
Definition set_tpl.h:533
void insert(const Key &k)
Inserts a new element into the set.
Definition set_tpl.h:539
void clear()
Removes all the elements, if any, from the set.
Definition set_tpl.h:338
void requisiteNodes(const DAG &dag, const NodeSet &query, const NodeSet &hardEvidence, const NodeSet &softEvidence, NodeSet &requisite) const
Fill the 'requisite' nodeset with the requisite nodes in dag given a query and evidence.
d-separation analysis (as described in Koller & Friedman 2009)
d-separation analysis (as described in Koller & Friedman 2009)
Size NodeId
Type for node ids.
Set< NodeId > NodeSet
Some typdefs and define for shortcuts ...
Generic class for manipulating lists.
gum is the global namespace for all aGrUM entities
Definition agrum.h:46