Changeset 2231:06faf3f06d67 in lemon-0.x for lemon/full_graph.h
- Timestamp:
- 10/03/06 13:46:39 (17 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2973
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/full_graph.h
r2223 r2231 610 610 return node.id >> 1; 611 611 } 612 static Node fromANodeId(int id) {612 static Node nodeFromANodeId(int id) { 613 613 return Node(id << 1); 614 614 } … … 620 620 return node.id >> 1; 621 621 } 622 static Node fromBNodeId(int id) {622 static Node nodeFromBNodeId(int id) { 623 623 return Node((id << 1) + 1); 624 624 } … … 666 666 667 667 668 typedef BpUGraphExtender<FullBpUGraphBase> ExtendedFullBpUGraphBase; 668 typedef BpUGraphExtender<BidirBpUGraphExtender<FullBpUGraphBase> > 669 ExtendedFullBpUGraphBase; 669 670 670 671
Note: See TracChangeset
for help on using the changeset viewer.