Changes in / [996:b6347aae6575:994:20ae244b4779] in lemon-main
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/adaptors_test.cc
r995 r515 1378 1378 1379 1379 // Apply several adaptors on the grid graph 1380 typedef Orienter< const GridGraph, GridGraph::EdgeMap<bool> > 1381 OrientedGridGraph; 1382 typedef SplitNodes<OrientedGridGraph> SplitGridGraph; 1380 typedef SplitNodes<Orienter< const GridGraph, GridGraph::EdgeMap<bool> > > 1381 SplitGridGraph; 1383 1382 typedef Undirector<const SplitGridGraph> USplitGridGraph; 1384 1383 checkConcept<concepts::Digraph, SplitGridGraph>(); 1385 1384 checkConcept<concepts::Graph, USplitGridGraph>(); 1386 1385 1387 OrientedGridGraph oadaptor = orienter(graph, dir_map); 1388 SplitGridGraph adaptor = splitNodes(oadaptor); 1386 SplitGridGraph adaptor = splitNodes(orienter(graph, dir_map)); 1389 1387 USplitGridGraph uadaptor = undirector(adaptor); 1390 1388
Note: See TracChangeset
for help on using the changeset viewer.