diff --git a/gtsam/inference/BayesTree.h b/gtsam/inference/BayesTree.h index 924a505a2..3d0c4ecff 100644 --- a/gtsam/inference/BayesTree.h +++ b/gtsam/inference/BayesTree.h @@ -60,7 +60,7 @@ namespace gtsam { * @tparam CLIQUE The type of the clique data structure, defaults to BayesTreeClique, normally do not change this * as it is only used when developing special versions of BayesTree, e.g. for ISAM2. * - * \addtogroup Multifrontal + * \ingroup Multifrontal * \nosubgrouping */ template diff --git a/gtsam/inference/JunctionTree.h b/gtsam/inference/JunctionTree.h index e914c325e..d1a69f944 100644 --- a/gtsam/inference/JunctionTree.h +++ b/gtsam/inference/JunctionTree.h @@ -43,7 +43,7 @@ namespace gtsam { * The tree structure and elimination method are exactly analagous to the EliminationTree, * except that in the JunctionTree, at each node multiple variables are eliminated at a time. * - * \addtogroup Multifrontal + * \ingroup Multifrontal * \nosubgrouping */ template diff --git a/gtsam/linear/GaussianJunctionTree.h b/gtsam/linear/GaussianJunctionTree.h index c7f13ea5c..c02fd49ed 100644 --- a/gtsam/linear/GaussianJunctionTree.h +++ b/gtsam/linear/GaussianJunctionTree.h @@ -32,7 +32,7 @@ namespace gtsam { * factors stored in each cluster. It can be eliminated into a Gaussian Bayes tree with the same * structure, which is essentially doing multifrontal sparse matrix factorization. * - * \addtogroup Multifrontal + * \ingroup Multifrontal * \nosubgrouping */ class GTSAM_EXPORT GaussianJunctionTree : diff --git a/gtsam/linear/HessianFactor.h b/gtsam/linear/HessianFactor.h index 8394b2ee8..3eefe1228 100644 --- a/gtsam/linear/HessianFactor.h +++ b/gtsam/linear/HessianFactor.h @@ -385,7 +385,7 @@ namespace gtsam { * @param keys The variables to eliminate and their elimination ordering * @return The conditional and remaining factor * -* \addtogroup LinearSolving */ +* \ingroup LinearSolving */ GTSAM_EXPORT std::pair, boost::shared_ptr > EliminateCholesky(const GaussianFactorGraph& factors, const Ordering& keys); @@ -403,7 +403,7 @@ GTSAM_EXPORT std::pair, boost::shared_ptr * @param keys The variables to eliminate and their elimination ordering * @return The conditional and remaining factor * -* \addtogroup LinearSolving */ +* \ingroup LinearSolving */ GTSAM_EXPORT std::pair, boost::shared_ptr > EliminatePreferCholesky(const GaussianFactorGraph& factors, const Ordering& keys); diff --git a/gtsam/linear/JacobianFactor.h b/gtsam/linear/JacobianFactor.h index ddf614910..8bcf18268 100644 --- a/gtsam/linear/JacobianFactor.h +++ b/gtsam/linear/JacobianFactor.h @@ -365,7 +365,7 @@ namespace gtsam { * @param keys The variables to eliminate in the order as specified here in \c keys * @return The conditional and remaining factor * - * \addtogroup LinearSolving */ + * \ingroup LinearSolving */ friend GTSAM_EXPORT std::pair, shared_ptr> EliminateQR(const GaussianFactorGraph& factors, const Ordering& keys); diff --git a/gtsam/symbolic/SymbolicJunctionTree.h b/gtsam/symbolic/SymbolicJunctionTree.h index 0dcfae541..f1168f962 100644 --- a/gtsam/symbolic/SymbolicJunctionTree.h +++ b/gtsam/symbolic/SymbolicJunctionTree.h @@ -44,7 +44,7 @@ namespace gtsam { * The tree structure and elimination method are exactly analagous to the EliminationTree, * except that in the JunctionTree, at each node multiple variables are eliminated at a time. * - * \addtogroup Multifrontal + * \ingroup Multifrontal * \nosubgrouping */ class GTSAM_EXPORT SymbolicJunctionTree :