Doxygen fixes. Bizarre: doxygen seems to parse some headers OK and others not.
parent
638d4f1978
commit
76d45a2482
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
* -------------------------------------------------------------------------- */
|
* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* Created on: Feb 3, 2010
|
* Created on: Feb 3, 2010
|
||||||
* @brief: purely functional binary tree
|
* @brief: purely functional binary tree
|
||||||
* @Author: Chris Beall
|
* @Author: Chris Beall
|
||||||
|
|
|
@ -9,12 +9,12 @@
|
||||||
|
|
||||||
* -------------------------------------------------------------------------- */
|
* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* DSF.h
|
* DSF.h
|
||||||
*
|
*
|
||||||
* Created on: Mar 26, 2010
|
* Created on: Mar 26, 2010
|
||||||
* Author: nikai
|
* @Author Kai Ni
|
||||||
* Description: An implementation of Disjoint set forests (see CLR page 446 and up)
|
* @brief An implementation of Disjoint set forests (see CLR page 446 and up)
|
||||||
* Quoting from CLR: A disjoint-set data structure maintains a collection
|
* 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
|
* S = {S_1,S_2,...} of disjoint dynamic sets. Each set is identified by
|
||||||
* a representative, which is some member of the set.
|
* a representative, which is some member of the set.
|
||||||
|
|
|
@ -13,8 +13,8 @@
|
||||||
* DSFVector.h
|
* DSFVector.h
|
||||||
*
|
*
|
||||||
* Created on: Jun 25, 2010
|
* Created on: Jun 25, 2010
|
||||||
* Author: nikai
|
* @Author nikai
|
||||||
* Description: a faster implementation for DSF, which uses vector rather than btree.
|
* @brief a faster implementation for DSF, which uses vector rather than btree.
|
||||||
* As a result, the size of the forest is prefixed.
|
* As a result, the size of the forest is prefixed.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue