Added doxygen group
parent
c14d69326a
commit
5a4ef39d0c
|
@ -33,6 +33,8 @@ namespace gtsam {
|
|||
* Bayes tree
|
||||
* Templated on the CONDITIONAL class, the type of node in the underlying Bayes chain.
|
||||
* This could be a ConditionalProbabilityTable, a GaussianConditional, or a SymbolicConditional
|
||||
*
|
||||
* \ingroup Multifrontal
|
||||
*/
|
||||
template<class CONDITIONAL>
|
||||
class BayesTree: public Testable<BayesTree<CONDITIONAL> > {
|
||||
|
|
|
@ -42,6 +42,8 @@ namespace gtsam {
|
|||
* chordal Bayes net resulting from elimination. In GTSAM the BayesTree is used to
|
||||
* represent the clique tree associated with a Bayes net, and the JunctionTree is
|
||||
* used to collect the factors associated with each clique during the elimination process.
|
||||
*
|
||||
* \ingroup Multifrontal
|
||||
*/
|
||||
template<class FG>
|
||||
class JunctionTree: public ClusterTree<FG> {
|
||||
|
|
|
@ -30,6 +30,8 @@ namespace gtsam {
|
|||
/* ************************************************************************* */
|
||||
/**
|
||||
* GaussianJunctionTree that does the optimization
|
||||
*
|
||||
* \ingroup Multifrontal
|
||||
*/
|
||||
class GaussianJunctionTree: public JunctionTree<GaussianFactorGraph> {
|
||||
|
||||
|
|
Loading…
Reference in New Issue