Changeset 2231:06faf3f06d67 in lemon-0.x for lemon/list_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/list_graph.h
r2189 r2231 1271 1271 return node.id >> 1; 1272 1272 } 1273 static Node fromANodeId(int id) {1273 static Node nodeFromANodeId(int id) { 1274 1274 return Node(id << 1); 1275 1275 } … … 1281 1281 return node.id >> 1; 1282 1282 } 1283 static Node fromBNodeId(int id) {1283 static Node nodeFromBNodeId(int id) { 1284 1284 return Node((id << 1) + 1); 1285 1285 } … … 1483 1483 1484 1484 1485 typedef BpUGraphExtender< ListBpUGraphBase > ExtendedListBpUGraphBase; 1485 typedef BpUGraphExtender<BidirBpUGraphExtender<ListBpUGraphBase> > 1486 ExtendedListBpUGraphBase; 1486 1487 1487 1488 /// \ingroup graphs
Note: See TracChangeset
for help on using the changeset viewer.