Changeset 995:4bb9e72e1a41 in lemon-main for test
- Timestamp:
 - 09/12/12 17:25:48 (13 years ago)
 - Branch:
 - default
 - Children:
 - 996:b6347aae6575, 998:7fdaa05a69a1
 - Phase:
 - public
 - File:
 - 
          
- 1 edited
 
- 
          test/adaptors_test.cc (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
        
test/adaptors_test.cc
r515 r995 1378 1378 1379 1379 // Apply several adaptors on the grid graph 1380 typedef SplitNodes<Orienter< const GridGraph, GridGraph::EdgeMap<bool> > > 1381 SplitGridGraph; 1380 typedef Orienter< const GridGraph, GridGraph::EdgeMap<bool> > 1381 OrientedGridGraph; 1382 typedef SplitNodes<OrientedGridGraph> SplitGridGraph; 1382 1383 typedef Undirector<const SplitGridGraph> USplitGridGraph; 1383 1384 checkConcept<concepts::Digraph, SplitGridGraph>(); 1384 1385 checkConcept<concepts::Graph, USplitGridGraph>(); 1385 1386 1386 SplitGridGraph adaptor = splitNodes(orienter(graph, dir_map)); 1387 OrientedGridGraph oadaptor = orienter(graph, dir_map); 1388 SplitGridGraph adaptor = splitNodes(oadaptor); 1387 1389 USplitGridGraph uadaptor = undirector(adaptor); 1388 1390  
Note: See TracChangeset
          for help on using the changeset viewer.
      
