COIN-OR::LEMON - Graph Library

Changeset 2231:06faf3f06d67 in lemon-0.x for lemon/full_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/full_graph.h

    r2223 r2231  
    610610      return node.id >> 1;
    611611    }
    612     static Node fromANodeId(int id) {
     612    static Node nodeFromANodeId(int id) {
    613613      return Node(id << 1);
    614614    }
     
    620620      return node.id >> 1;
    621621    }
    622     static Node fromBNodeId(int id) {
     622    static Node nodeFromBNodeId(int id) {
    623623      return Node((id << 1) + 1);
    624624    }
     
    666666
    667667
    668   typedef BpUGraphExtender<FullBpUGraphBase> ExtendedFullBpUGraphBase;
     668  typedef BpUGraphExtender<BidirBpUGraphExtender<FullBpUGraphBase> >
     669  ExtendedFullBpUGraphBase;
    669670
    670671
Note: See TracChangeset for help on using the changeset viewer.