Added doxygen group

release/4.3a0
Richard Roberts 2011-10-12 07:47:08 +00:00
parent c14d69326a
commit 5a4ef39d0c
3 changed files with 6 additions and 0 deletions

View File

@ -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> > {

View File

@ -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> {

View File

@ -30,6 +30,8 @@ namespace gtsam {
/* ************************************************************************* */
/**
* GaussianJunctionTree that does the optimization
*
* \ingroup Multifrontal
*/
class GaussianJunctionTree: public JunctionTree<GaussianFactorGraph> {