25 template<
class DERIVED,
class FACTORGRAPH>
27 const typename FactorGraphType::EliminationResult& eliminationResult)
29 conditional_ = eliminationResult.first;
33 template<
class DERIVED,
class FACTORGRAPH>
35 const DERIVED& other,
double tol)
const
37 return (!conditional_ && !other.conditional())
38 || conditional_->equals(*other.conditional(), tol);
42 template<
class DERIVED,
class FACTORGRAPH>
46 KeySet p_F_S_parents(this->conditional()->beginParents(), this->conditional()->endParents());
47 KeySet indicesB(B->conditional()->begin(), B->conditional()->end());
49 std::set_difference(p_F_S_parents.begin(), p_F_S_parents.end(),
50 indicesB.begin(), indicesB.end(), back_inserter(S_setminus_B));
55 template<
class DERIVED,
class FACTORGRAPH>
57 const derived_ptr& B,
const FactorGraphType& p_Cp_B)
const
59 gttic(shortcut_indices);
60 KeySet allKeys = p_Cp_B.keys();
61 KeySet indicesB(B->conditional()->begin(), B->conditional()->end());
62 KeyVector S_setminus_B = separator_setminus_B(B);
65 std::set_intersection(S_setminus_B.begin(), S_setminus_B.end(),
66 allKeys.begin(), allKeys.end(), back_inserter(keep));
68 std::set_intersection(indicesB.begin(), indicesB.end(),
69 allKeys.begin(), allKeys.end(), back_inserter(keep));
74 template<
class DERIVED,
class FACTORGRAPH>
76 const std::string& s,
const KeyFormatter& keyFormatter)
const
78 conditional_->print(s, keyFormatter);
82 template<
class DERIVED,
class FACTORGRAPH>
85 for(
const derived_ptr& child: children)
86 size += child->treeSize();
91 template<
class DERIVED,
class FACTORGRAPH>
94 std::lock_guard<std::mutex> marginalLock(cachedSeparatorMarginalMutex_);
95 if (!cachedSeparatorMarginal_)
98 size_t subtree_count = 1;
99 for(
const derived_ptr& child: children)
100 subtree_count += child->numCachedSeparatorMarginals();
102 return subtree_count;
110 template<
class DERIVED,
class FACTORGRAPH>
111 typename BayesTreeCliqueBase<DERIVED, FACTORGRAPH>::BayesNetType
114 gttic(BayesTreeCliqueBase_shortcut);
117 KeyVector S_setminus_B = separator_setminus_B(B);
118 if (!parent_.expired() && !S_setminus_B.empty())
121 derived_ptr parent(parent_.lock());
122 gttoc(BayesTreeCliqueBase_shortcut);
124 gttic(BayesTreeCliqueBase_shortcut);
125 p_Cp_B += parent->conditional_;
128 KeyVector keep = shortcut_indices(B, p_Cp_B);
131 boost::shared_ptr<FactorGraphType> p_S_B = p_Cp_B.marginal(keep, function);
132 return *p_S_B->eliminatePartialSequential(S_setminus_B, function).first;
136 return BayesNetType();
144 template <
class DERIVED,
class FACTORGRAPH>
145 typename BayesTreeCliqueBase<DERIVED, FACTORGRAPH>::FactorGraphType
147 Eliminate function)
const {
148 std::lock_guard<std::mutex> marginalLock(cachedSeparatorMarginalMutex_);
149 gttic(BayesTreeCliqueBase_separatorMarginal);
151 if (!cachedSeparatorMarginal_) {
152 gttic(BayesTreeCliqueBase_separatorMarginal_cachemiss);
155 if (parent_.expired() ) {
158 cachedSeparatorMarginal_ = empty;
161 gttoc(BayesTreeCliqueBase_separatorMarginal_cachemiss);
162 gttoc(BayesTreeCliqueBase_separatorMarginal);
166 derived_ptr parent(parent_.lock());
169 gttic(BayesTreeCliqueBase_separatorMarginal);
170 gttic(BayesTreeCliqueBase_separatorMarginal_cachemiss);
173 p_Cp += parent->conditional_;
176 KeyVector indicesS(this->conditional()->beginParents(),
177 this->conditional()->endParents());
178 auto separatorMarginal =
179 p_Cp.marginalMultifrontalBayesNet(
Ordering(indicesS), function);
180 cachedSeparatorMarginal_.reset(*separatorMarginal);
185 return *cachedSeparatorMarginal_;
192 template <
class DERIVED,
class FACTORGRAPH>
193 typename BayesTreeCliqueBase<DERIVED, FACTORGRAPH>::FactorGraphType
195 Eliminate function)
const {
196 gttic(BayesTreeCliqueBase_marginal2);
198 FactorGraphType p_C = this->separatorMarginal(function);
200 p_C += boost::shared_ptr<FactorType>(this->conditional_);
205 template<
class DERIVED,
class FACTORGRAPH>
212 std::lock_guard<std::mutex> marginalLock(cachedSeparatorMarginalMutex_);
213 if (cachedSeparatorMarginal_) {
214 for(derived_ptr& child: children) {
215 child->deleteCachedShortcuts();
219 cachedSeparatorMarginal_ = boost::none;
Base class for cliques of a BayesTree.
Global functions in a separate testing namespace.
Definition: chartTesting.h:28
FastVector< Key > KeyVector
Define collection type once and for all - also used in wrappers.
Definition: Key.h:86
std::function< std::string(Key)> KeyFormatter
Typedef for a function to format a key, i.e. to convert it to a string.
Definition: Key.h:35
A Discrete Factor Graph is a factor graph where all factors are Discrete, i.e.
Definition: DiscreteFactorGraph.h:66
size_t treeSize() const
The size of subtree rooted at this clique, i.e., nr of Cliques.
Definition: BayesTreeCliqueBase-inst.h:83
FactorGraphType marginal2(Eliminate function=EliminationTraitsType::DefaultEliminate) const
return the marginal P(C) of the clique, using marginal caching
Definition: BayesTreeCliqueBase-inst.h:194
bool equals(const DERIVED &other, double tol=1e-9) const
check equality
Definition: BayesTreeCliqueBase-inst.h:34
FactorGraphType separatorMarginal(Eliminate function=EliminationTraitsType::DefaultEliminate) const
return the marginal P(S) on the separator
Definition: BayesTreeCliqueBase-inst.h:146
BayesNetType shortcut(const derived_ptr &root, Eliminate function=EliminationTraitsType::DefaultEliminate) const
return the conditional P(S|Root) on the separator given the root
Definition: BayesTreeCliqueBase-inst.h:112
void deleteCachedShortcuts()
This deletes the cached shortcuts of all cliques (subtree) below this clique.
Definition: BayesTreeCliqueBase-inst.h:206
KeyVector shortcut_indices(const derived_ptr &B, const FactorGraphType &p_Cp_B) const
Determine variable indices to keep in recursive separator shortcut calculation The factor graph p_Cp_...
Definition: BayesTreeCliqueBase-inst.h:56
KeyVector separator_setminus_B(const derived_ptr &B) const
Calculate set for shortcut calculations.
Definition: BayesTreeCliqueBase-inst.h:44
virtual void print(const std::string &s="", const KeyFormatter &keyFormatter=DefaultKeyFormatter) const
print this node
Definition: BayesTreeCliqueBase-inst.h:75
size_t numCachedSeparatorMarginals() const
Collect number of cliques with cached separator marginals.
Definition: BayesTreeCliqueBase-inst.h:92
void setEliminationResult(const typename FactorGraphType::EliminationResult &eliminationResult)
Fill the elimination result produced during elimination.
Definition: BayesTreeCliqueBase-inst.h:26
Definition: Ordering.h:34