lemon/graph_utils.h
changeset 1729 06f939455cb1
parent 1720 578d8b2b76c6
child 1730 fffa6456548a
     1.1 --- a/lemon/graph_utils.h	Fri Oct 14 11:03:40 2005 +0000
     1.2 +++ b/lemon/graph_utils.h	Mon Oct 17 10:28:48 2005 +0000
     1.3 @@ -1325,6 +1325,14 @@
     1.4    /// in constant time. On the other hand, the values are updated automatically
     1.5    /// whenever the graph changes.
     1.6    ///
     1.7 +  /// \warning Besides addNode() and addEdge(), a graph structure may provide
     1.8 +  /// alternative ways to mogify the graph. The correct behavior of InDegMap
     1.9 +  /// is not guarantied if these additional featureas are used. For example
    1.10 +  /// the funstions \ref ListGraph::changeSource() "changeSource()",
    1.11 +  /// \ref ListGraph::changeTarget() "changeTarget()" and
    1.12 +  /// \ref ListGraph::reverseEdge() "reverseEdge()"
    1.13 +  /// of \ref ListGraph will \e not update the degree values correctly.
    1.14 +  ///
    1.15    /// \sa OutDegMap
    1.16  
    1.17    template <typename _Graph>
    1.18 @@ -1423,6 +1431,14 @@
    1.19    /// in constant time. On the other hand, the values are updated automatically
    1.20    /// whenever the graph changes.
    1.21    ///
    1.22 +  /// \warning Besides addNode() and addEdge(), a graph structure may provide
    1.23 +  /// alternative ways to mogify the graph. The correct behavior of OutDegMap
    1.24 +  /// is not guarantied if these additional featureas are used. For example
    1.25 +  /// the funstions \ref ListGraph::changeSource() "changeSource()",
    1.26 +  /// \ref ListGraph::changeTarget() "changeTarget()" and
    1.27 +  /// \ref ListGraph::reverseEdge() "reverseEdge()"
    1.28 +  /// of \ref ListGraph will \e not update the degree values correctly.
    1.29 +  ///
    1.30    /// \sa InDegMap
    1.31  
    1.32    template <typename _Graph>