COIN-OR::LEMON - Graph Library

Changeset 1674:648aa2f33dc8 in lemon-0.x


Ignore:
Timestamp:
09/01/05 22:35:30 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2190
Message:

Warning added on the usage of InDegMap/OutDegMap?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/graph_utils.h

    r1627 r1674  
    10711071  /// whenever the graph changes.
    10721072  ///
     1073  /// \warning Besides addNode() and addEdge(), a graph structure may provide
     1074  /// alternative ways to mogify the graph. The correct behavior of InDegMap
     1075  /// is not guarantied if these additional featureas are used. For example
     1076  /// the funstions \ref ListGraph::changeSource() "changeSource()",
     1077  /// \ref ListGraph::changeTarget() "changeTarget()" and
     1078  /// \ref ListGraph::reverseEdge() "reverseEdge()"
     1079  /// of \ref ListGraph will \e not update the degree values correctly.
     1080  ///
    10731081  /// \sa OutDegMap
    10741082
     
    11551163  };
    11561164
    1157 
    11581165  /// \brief Map of the node out-degrees.
    11591166  ///
     
    11621169  /// in constant time. On the other hand, the values are updated automatically
    11631170  /// whenever the graph changes.
     1171  ///
     1172  /// \warning Besides addNode() and addEdge(), a graph structure may provide
     1173  /// alternative ways to mogify the graph. The correct behavior of OutDegMap
     1174  /// is not guarantied if these additional featureas are used. For example
     1175  /// the funstions \ref ListGraph::changeSource() "changeSource()",
     1176  /// \ref ListGraph::changeTarget() "changeTarget()" and
     1177  /// \ref ListGraph::reverseEdge() "reverseEdge()"
     1178  /// of \ref ListGraph will \e not update the degree values correctly.
    11641179  ///
    11651180  /// \sa InDegMap
Note: See TracChangeset for help on using the changeset viewer.