Changeset 157:2ccc1afc2c52 in lemon-main for lemon/graph_utils.h
- Timestamp:
- 05/24/08 23:20:49 (17 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/graph_utils.h
r148 r157 355 355 ///\sa AllArcLookUp 356 356 ///\sa DynArcLookUp 357 ///358 /// \author Balazs Dezso359 357 template <typename _Graph> 360 358 class ConArcIt : public _Graph::Arc { … … 479 477 /// 480 478 ///\sa findEdge() 481 ///482 /// \author Balazs Dezso483 479 template <typename _Graph> 484 480 class ConEdgeIt : public _Graph::Edge { … … 1243 1239 /// with stl compatible forward iterator. 1244 1240 /// 1245 /// \ param _Graph The graph type.1246 /// \ param _Item The item type of the graph.1247 /// \ param _Value The value type of the map.1241 /// \tparam _Graph The graph type. 1242 /// \tparam _Item The item type of the graph. 1243 /// \tparam _Value The value type of the map. 1248 1244 /// 1249 1245 /// \see IterableValueMap … … 1448 1444 /// with its member class \c InverseMap, or with the \c operator() member. 1449 1445 /// 1450 /// \ param _Graph The graph class the \c DescriptorMap belongs to.1451 /// \ param _Item The Item is the Key of the Map. It may be Node, Arc or1446 /// \tparam _Graph The graph class the \c DescriptorMap belongs to. 1447 /// \tparam _Item The Item is the Key of the Map. It may be Node, Arc or 1452 1448 /// Edge. 1453 1449 template <typename _Graph, typename _Item> … … 1638 1634 /// The SourceMap gives back the source Node of the given arc. 1639 1635 /// \see TargetMap 1640 /// \author Balazs Dezso1641 1636 template <typename Digraph> 1642 1637 class SourceMap { … … 1678 1673 /// The TargetMap gives back the target Node of the given arc. 1679 1674 /// \see SourceMap 1680 /// \author Balazs Dezso1681 1675 template <typename Digraph> 1682 1676 class TargetMap { … … 1718 1712 /// Returns the "forward" directed arc view of an edge. 1719 1713 /// \see BackwardMap 1720 /// \author Balazs Dezso1721 1714 template <typename Graph> 1722 1715 class ForwardMap { … … 1758 1751 /// Returns the "backward" directed arc view of an edge. 1759 1752 /// \see ForwardMap 1760 /// \author Balazs Dezso1761 1753 template <typename Graph> 1762 1754 class BackwardMap { … … 2097 2089 ///queries. 2098 2090 /// 2099 ///\ param G The type of the underlying digraph.2091 ///\tparam G The type of the underlying digraph. 2100 2092 /// 2101 2093 ///\sa ArcLookUp … … 2538 2530 ///proportional (<em>O(m</em>log<em>m)</em>) to the number of arcs). 2539 2531 /// 2540 ///\ param G The type of the underlying digraph.2532 ///\tparam G The type of the underlying digraph. 2541 2533 /// 2542 2534 ///\sa DynArcLookUp … … 2651 2643 ///proportional (<em>O(m</em>log<em>m)</em>) to the number of arcs). 2652 2644 /// 2653 ///\ param G The type of the underlying digraph.2645 ///\tparam G The type of the underlying digraph. 2654 2646 /// 2655 2647 ///\sa DynArcLookUp
Note: See TracChangeset
for help on using the changeset viewer.