COIN-OR::LEMON - Graph Library

Changeset 639:a11a4377a816 in lemon-0.x for src/hugo/for_each_macros.h


Ignore:
Timestamp:
05/14/04 17:19:18 (20 years ago)
Author:
marci
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@837
Message:

misc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/hugo/for_each_macros.h

    r638 r639  
    1818  /// \code
    1919  /// Graph g;
     20  /// ...
    2021  /// Graph::NodeIt n;
    2122  /// FOR_EACH_GLOB(n, g) {
     
    3435  /// \code
    3536  /// Graph g;
     37  /// ...
    3638  /// Graph::Node v;
    3739  /// Graph::OutEdgeIt e;
     
    4143  /// typedef BipartiteGraph<Graph> BGraph;
    4244  /// BGraph h;
     45  /// ...
    4346  /// BGraph::ClassNodeIt n;
    4447  /// FOR_EACH_INC_GLOB(BGraph::ClassNodeIt, n, h, h.S_CLASS) {
     
    121124  /// \code
    122125  /// Graph g;
     126  /// ...
    123127  /// FOR_EACH_LOC(Graph::NodeIt, n, g) {
    124128  /// ...
     
    135139  /// \code
    136140  /// Graph g;
     141  /// ...
    137142  /// Graph::Node v;
    138143  /// FOR_EACH_INC_LOC(Graph::OutEdgeIt, e, g, v) {
     
    141146  /// typedef BipartiteGraph<Graph> BGraph;
    142147  /// BGraph h;
     148  /// ...
    143149  /// FOR_EACH_INC_LOC(BGraph::ClassNodeIt, n, h, h.S_CLASS) {
    144150  /// ...
Note: See TracChangeset for help on using the changeset viewer.