COIN-OR::LEMON - Graph Library

Changeset 2231:06faf3f06d67 in lemon-0.x for lemon/list_graph.h


Ignore:
Timestamp:
10/03/06 13:46:39 (18 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2973
Message:

Some rearrangement of concepts and extenders
BpUGraph concepts and concept check test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/list_graph.h

    r2189 r2231  
    12711271      return node.id >> 1;
    12721272    }
    1273     static Node fromANodeId(int id) {
     1273    static Node nodeFromANodeId(int id) {
    12741274      return Node(id << 1);
    12751275    }
     
    12811281      return node.id >> 1;
    12821282    }
    1283     static Node fromBNodeId(int id) {
     1283    static Node nodeFromBNodeId(int id) {
    12841284      return Node((id << 1) + 1);
    12851285    }
     
    14831483
    14841484
    1485   typedef BpUGraphExtender< ListBpUGraphBase > ExtendedListBpUGraphBase;
     1485  typedef BpUGraphExtender<BidirBpUGraphExtender<ListBpUGraphBase> >
     1486  ExtendedListBpUGraphBase;
    14861487
    14871488  /// \ingroup graphs
Note: See TracChangeset for help on using the changeset viewer.