Changeset 1555:48769ac7ec32 in lemon-0.x
- Timestamp:
- 07/13/05 21:49:36 (18 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2051
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/Doxyfile.in
r1549 r1555 236 236 # If set to NO only classes defined in header files are included. 237 237 238 EXTRACT_LOCAL_CLASSES = YES238 EXTRACT_LOCAL_CLASSES = NO 239 239 240 240 # This flag is only useful for Objective-C code. When set to YES local -
lemon/full_graph.h
r1435 r1555 36 36 namespace lemon { 37 37 38 /// \addtogroup graphs39 /// @{40 41 38 class FullGraphBase { 42 39 int NodeNum; … … 196 193 typedef DefaultMappableGraphExtender<IterableFullGraphBase> MappableFullGraphBase; 197 194 195 /// \addtogroup graphs 196 /// @{ 197 198 198 ///A full graph class. 199 199 … … 212 212 }; 213 213 214 ///@} 214 215 215 216 // Base graph class for UndirFullGraph. … … 374 375 }; 375 376 377 /// \addtogroup graphs 378 /// @{ 379 380 376 381 /// \todo UndirFullGraph from the UndirFullGraphBase 377 382 378 379 383 380 384 /// @} -
lemon/graph_utils.h
r1552 r1555 1093 1093 /// whenever the graph changes. 1094 1094 /// 1095 /// \sa OutDegMap1095 /// \sa InDegMap 1096 1096 1097 1097 template <typename _Graph> -
lemon/kruskal.h
r1547 r1555 46 46 47 47 /// This function runs Kruskal's algorithm to find a minimum cost tree. 48 /// \param g The graph the algorithm runs on. The algorithm considers the 49 /// graph to be undirected, the direction of the edges are not used. 48 /// \param g The graph the algorithm runs on. 49 /// It can be either \ref concept::StaticGraph "directed" or 50 /// \ref concept::UndirStaticGraph "undirected". 51 /// If the graph is directed, the algorithm consider it to be 52 /// undirected by disregarding the direction of the edges. 50 53 /// 51 54 /// \param in This object is used to describe the edge costs. It must -
lemon/list_graph.h
r1546 r1555 540 540 }; 541 541 542 ///@} 542 543 543 544 /**************** Undirected List Graph ****************/ … … 550 551 AlterableUndirGraphExtender< 551 552 UndirGraphExtender<ListGraphBase> > > > > > > ErasableUndirListGraphBase; 553 554 /// \addtogroup graphs 555 /// @{ 552 556 553 557 ///An undirected list graph class. -
lemon/maps.h
r1547 r1555 121 121 122 122 123 // to document later123 ///\todo to document later 124 124 template<typename T, T v> 125 125 struct Const { }; 126 // to document later126 ///\todo to document later 127 127 template<typename K, typename V, V v> 128 128 class ConstMap<K, Const<V, v> > : public MapBase<K, V>
Note: See TracChangeset
for help on using the changeset viewer.