Changeset 430:60e4627e8c74 in lemon-0.x
- Timestamp:
- 04/26/04 20:08:46 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@570
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/groups.dox
r424 r430 1 /// @defgroup misc Miscellaneous tools 1 /// @defgroup datas Data Structures 2 /// This group describes the several graph structures implemented in HugoLib. 3 4 /// @defgroup graphs Graph Structures 5 /// @ingroup datas 6 /// This group describes the graph structures implemented in HugoLib. 7 8 /// @defgroup auxdat Auxiliary Data Structures 9 /// @ingroup datas 10 /// This group describes the data structures implemented in HugoLib in 11 /// order to make it easier to implement combinatorial algorithms. 12 13 /// @defgroup gwrappers Wrapper Classes for Graphs 14 /// @ingroup graphs 15 /// This group contains several wrapper classes for graphs 16 17 /// @defgroup galgs Graph Algorithms 18 /// This group describes the several graph algorithms implemented in HugoLib. 19 20 /// @defgroup misc Miscellaneous Tools 2 21 /// Here you can find several useful tools for development, 3 22 /// debugging and testing. 4 23 5 /// @defgroup experimental Experimental structures and algorithms24 /// @defgroup experimental Experimental Structures and Algorithms 6 25 /// This group contains some Experimental structures and algorithms. 7 26 /// The stuffs here are subject to change. 8 27 9 /// @defgroup gwrappers Wrapper classes for graphs10 /// @ingroup experimental11 /// This group contains several wrapper classes for graphs12 13 /// @defgroup graphs Graph structures14 /// @ingroup experimental15 /// This group describes the several graph structures implemented in HugoLib.16 28 17 29 /// \ingroup misc experimental -
src/include/bin_heap.h
r274 r430 62 62 #define BIN_HEAP_HH 63 63 64 ///ingroup auxdat 64 65 ///\file 65 66 ///\brief Binary Heap implementation. … … 71 72 namespace hugo { 72 73 73 /// A Binary Heap implementation. 74 /// \addtogroup auxdat 75 /// @{ 76 77 /// A Binary Heap implementation. 74 78 template <typename Item, typename Prio, typename ItemIntMap, 75 79 typename Compare = std::less<Prio> > … … 236 240 } 237 241 242 ///@} 243 238 244 } // namespace hugo 239 245 -
src/include/dijkstra.h
r421 r430 3 3 #define HUGO_DIJKSTRA_H 4 4 5 ///ingroup galgs 5 6 ///\file 6 7 ///\brief Dijkstra algorithm. … … 10 11 11 12 namespace hugo { 13 14 /// \addtogroup galgs 15 /// @{ 12 16 13 17 ///%Dijkstra algorithm class. … … 190 194 } 191 195 } 196 197 /// @} 192 198 193 199 } //END OF NAMESPACE HUGO -
src/include/fib_heap.h
r387 r430 4 4 #define HUGO_FIB_HEAP_H 5 5 6 ///ingroup auxdat 6 7 ///\file 7 8 ///\brief Fibonacci Heap implementation. … … 13 14 namespace hugo { 14 15 16 /// \addtogroup auxdat 17 /// @{ 18 15 19 /// An implementation of the Fibonacci Heap. 16 20 … … 491 495 } 492 496 497 ///@} 498 493 499 } //namespace hugo 494 500 #endif -
src/work/athos/minlengthpaths.h
r330 r430 3 3 #define HUGO_MINLENGTHPATHS_H 4 4 5 ///ingroup galgs 5 6 ///\file 6 7 ///\brief An algorithm for finding k paths of minimal total length. … … 15 16 namespace hugo { 16 17 17 18 /// \addtogroup galgs 19 /// @{ 18 20 19 21 ///\brief Implementation of an algorithm for finding k paths between 2 nodes … … 161 163 }; //class MinLengthPaths 162 164 165 ///@} 163 166 164 167 } //namespace hugo
Note: See TracChangeset
for help on using the changeset viewer.