public addClique function
parent
7daa5712f4
commit
9882d8b34e
|
@ -230,6 +230,9 @@ namespace gtsam {
|
||||||
* structures associated with adding a subtree, such as populating the nodes index. */
|
* structures associated with adding a subtree, such as populating the nodes index. */
|
||||||
void insertRoot(const sharedClique& subtree);
|
void insertRoot(const sharedClique& subtree);
|
||||||
|
|
||||||
|
/** add a clique (top down) */
|
||||||
|
void addClique(const sharedClique& clique, const sharedClique& parent_clique = sharedClique());
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a clone of this object as a shared pointer
|
* Create a clone of this object as a shared pointer
|
||||||
* Necessary for inheritance in matlab interface
|
* Necessary for inheritance in matlab interface
|
||||||
|
@ -250,9 +253,6 @@ namespace gtsam {
|
||||||
/** remove a clique: warning, can result in a forest */
|
/** remove a clique: warning, can result in a forest */
|
||||||
void removeClique(sharedClique clique);
|
void removeClique(sharedClique clique);
|
||||||
|
|
||||||
/** add a clique (top down) */
|
|
||||||
void addClique(const sharedClique& clique, const sharedClique& parent_clique = sharedClique());
|
|
||||||
|
|
||||||
/** add a clique (bottom up) */
|
/** add a clique (bottom up) */
|
||||||
sharedClique addClique(const sharedConditional& conditional, std::list<sharedClique>& child_cliques);
|
sharedClique addClique(const sharedConditional& conditional, std::list<sharedClique>& child_cliques);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue