COIN-OR::LEMON - Graph Library

Changes in / [996:b6347aae6575:994:20ae244b4779] in lemon-main


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/adaptors_test.cc

    r995 r515  
    13781378
    13791379  // 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;
    13831382  typedef Undirector<const SplitGridGraph> USplitGridGraph;
    13841383  checkConcept<concepts::Digraph, SplitGridGraph>();
    13851384  checkConcept<concepts::Graph, USplitGridGraph>();
    13861385
    1387   OrientedGridGraph oadaptor = orienter(graph, dir_map);
    1388   SplitGridGraph adaptor = splitNodes(oadaptor);
     1386  SplitGridGraph adaptor = splitNodes(orienter(graph, dir_map));
    13891387  USplitGridGraph uadaptor = undirector(adaptor);
    13901388
Note: See TracChangeset for help on using the changeset viewer.