From 76d45a248238d00df7932cf62349f4f8814ea892 Mon Sep 17 00:00:00 2001 From: Frank Dellaert Date: Wed, 7 Sep 2011 00:33:57 +0000 Subject: [PATCH] Doxygen fixes. Bizarre: doxygen seems to parse some headers OK and others not. --- gtsam/base/BTree.h | 2 +- gtsam/base/DSF.h | 6 +++--- gtsam/base/DSFVector.h | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/gtsam/base/BTree.h b/gtsam/base/BTree.h index 17dcc0f23..56bc0f4de 100644 --- a/gtsam/base/BTree.h +++ b/gtsam/base/BTree.h @@ -9,7 +9,7 @@ * -------------------------------------------------------------------------- */ -/* +/** * Created on: Feb 3, 2010 * @brief: purely functional binary tree * @Author: Chris Beall diff --git a/gtsam/base/DSF.h b/gtsam/base/DSF.h index af78db45c..3f1f2df0e 100644 --- a/gtsam/base/DSF.h +++ b/gtsam/base/DSF.h @@ -9,12 +9,12 @@ * -------------------------------------------------------------------------- */ -/* +/** * DSF.h * * Created on: Mar 26, 2010 - * Author: nikai - * Description: An implementation of Disjoint set forests (see CLR page 446 and up) + * @Author Kai Ni + * @brief An implementation of Disjoint set forests (see CLR page 446 and up) * Quoting from CLR: A disjoint-set data structure maintains a collection * S = {S_1,S_2,...} of disjoint dynamic sets. Each set is identified by * a representative, which is some member of the set. diff --git a/gtsam/base/DSFVector.h b/gtsam/base/DSFVector.h index c69582633..cb19b5461 100644 --- a/gtsam/base/DSFVector.h +++ b/gtsam/base/DSFVector.h @@ -12,10 +12,10 @@ /* * DSFVector.h * - * Created on: Jun 25, 2010 - * Author: nikai - * Description: a faster implementation for DSF, which uses vector rather than btree. - * As a result, the size of the forest is prefixed. + * Created on: Jun 25, 2010 + * @Author nikai + * @brief a faster implementation for DSF, which uses vector rather than btree. + * As a result, the size of the forest is prefixed. */ #pragma once