Changeset 2350:eb371753e814 in lemon-0.x
- Timestamp:
- 01/23/07 13:51:39 (18 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3142
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
demo/maps_summary.cc
r2209 r2350 18 18 19 19 ///\ingroup demos 20 ///\file maps_summary demo program21 ///\brief Introduction to LEMON maps20 ///\file 21 ///\brief An introduction to LEMON maps 22 22 /// 23 23 /// \include maps_summary.cc -
doc/basic_concepts.dox
r2288 r2350 1 namespace lemon { 2 1 3 /** 2 4 \page basic_concepts Basic concepts … … 118 120 graph representations. It has an undirected version too: ListUGraph. 119 121 */ 122 123 } -
doc/dirs.dox
r2157 r2350 38 38 39 39 /** 40 \dir concept 40 \dir concepts 41 41 \brief Concept descriptors and checking classes 42 42 -
doc/groups.dox
r2260 r2350 135 135 136 136 /** 137 @defgroup gutils GeneralGraph Utilities138 @ingroup algs 139 \brief This group describes some simple generalgraph utilities.140 141 This group describes some simple generalgraph utilities.137 @defgroup gutils Basic Graph Utilities 138 @ingroup algs 139 \brief This group describes some simple basic graph utilities. 140 141 This group describes some simple basic graph utilities. 142 142 */ 143 143 -
lemon/bfs.h
r2335 r2350 521 521 ///should be initially false. 522 522 /// 523 ///\param targetThe nodemaps of possible targets.523 ///\param nm The nodemaps of possible targets. 524 524 ///\retval reached Indicates that one of the target nodes is reached. 525 525 ///\return The processed node. … … 618 618 ///\param nm must be a bool (or convertible) node map. The 619 619 ///algorithm will stop when it reached a node \c v with 620 /// <tt>nm[v]</tt> true.620 /// <tt>nm[v]</tt> true. 621 621 ///\todo query the reached target 622 622 template<class NM> … … 1436 1436 /// should be initially false. 1437 1437 /// 1438 /// \param targetThe nodemaps of possible targets.1438 /// \param nm The nodemaps of possible targets. 1439 1439 /// \retval reached Indicates that one of the target nodes is reached. 1440 1440 /// \return The processed node. … … 1515 1515 ///\param nm must be a bool (or convertible) node map. The 1516 1516 ///algorithm will stop when it reached a node \c v with 1517 /// <tt>nm[v]</tt> true.1517 /// <tt>nm[v]</tt> true. 1518 1518 template <typename NM> 1519 1519 void start(const NM &nm) { -
lemon/elevator.h
r2349 r2350 267 267 268 268 ///Lift an active item to a higher level. 269 ///\param si The item to be lifted. It must be active.270 ///\param snew_level The new level of \c i. It must be strictly higher269 ///\param i The item to be lifted. It must be active. 270 ///\param new_level The new level of \c i. It must be strictly higher 271 271 ///than the current level. 272 272 /// -
lemon/eps.h
r2214 r2350 284 284 ///\param x The \c x coordinate of the node 285 285 ///\param y The \c y coordinate of the node 286 ///\param r The size (radius) of the node 286 287 ///\param col Color of the node. The default color is white 287 288 ///\param brd Color of the node border. The default color is black … … 294 295 ///\param t The shape of the drawn object 295 296 ///\param pos Position of the node 297 ///\param r The size (radius) of the node 296 298 ///\param col Color of the node. The default color is white 297 299 ///\param brd Color of the node border. The default color is black -
lemon/euler.h
r1993 r2350 122 122 123 123 /// \ingroup topology 124 ///This iterator converts to the \c Edge (or \c UEdge)124 ///This iterator converts to the \c Edge (or \c UEdge) 125 125 ///type of the graph and using 126 ///operator ++ it provides an Euler tour of an \undirected126 ///operator ++ it provides an Euler tour of an undirected 127 127 ///graph (if there exists). 128 128 /// -
lemon/graph_utils.h
r2331 r2350 398 398 ///\sa findEdge() 399 399 ///\sa EdgeLookUp 400 ///\s eAllEdgeLookup400 ///\sa AllEdgeLookup 401 401 /// 402 402 /// \author Balazs Dezso … … 2662 2662 ///\param prev The previous edge between \c s and \c t. It it is INVALID or 2663 2663 ///not given, the operator finds the first appropriate edge. 2664 ///\return An edge from \c s to \c t after \ prev or2664 ///\return An edge from \c s to \c t after \c prev or 2665 2665 ///\ref INVALID if there is no more. 2666 2666 /// -
lemon/path_utils.h
r2335 r2350 104 104 /// 105 105 /// Checks that each edge's target is the next's source. 106 /// \Checks the path's consistency. 107 /// 108 /// Checks that each edge's target is the next's source. 106 /// 109 107 template <typename Graph, typename Path> 110 108 bool checkPath(const Graph& graph, const Path& path) { -
lemon/preflow.h
r2330 r2350 156 156 ///\param _cap The capacity of the edges. 157 157 ///\param _f The flow of the edges. 158 ///\param tolTolerance class.158 ///\param _sr Tolerance class. 159 159 ///Except the graph, all of these parameters can be reset by 160 160 ///calling \ref source, \ref target, \ref capacityMap and \ref -
lemon/smart_graph.h
r2343 r2350 694 694 695 695 ///This constructor immediately makes a snapshot of the graph. 696 ///\param _g The graph we make a snapshot of.696 ///\param g The graph we make a snapshot of. 697 697 Snapshot(SmartUGraph &g) { 698 698 g.saveSnapshot(*this); … … 705 705 ///This function can be called more than once. In case of a repeated 706 706 ///call, the previous snapshot gets lost. 707 ///\param _g The graph we make the snapshot of.707 ///\param g The graph we make the snapshot of. 708 708 void save(SmartUGraph &g) 709 709 { -
lemon/ssp_min_cost_flow.h
r2276 r2350 22 22 ///\ingroup flowalgs 23 23 /// 24 ///\file \brief An algorithm for finding a flow of value \c k (for 24 ///\file 25 ///\brief An algorithm for finding a flow of value \c k (for 25 26 ///small values of \c k) having minimal total cost 26 27
Note: See TracChangeset
for help on using the changeset viewer.