[Lemon-commits] Alpar Juttner: Merge bugfix #448
Lemon HG
hg at lemon.cs.elte.hu
Thu Sep 13 10:29:37 CEST 2012
details: http://lemon.cs.elte.hu/hg/lemon/rev/b6347aae6575
changeset: 1155:b6347aae6575
user: Alpar Juttner <alpar [at] cs.elte.hu>
date: Wed Sep 12 17:34:01 2012 +0200
description:
Merge bugfix #448
diffstat:
test/adaptors_test.cc | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diffs (22 lines):
diff --git a/test/adaptors_test.cc b/test/adaptors_test.cc
--- a/test/adaptors_test.cc
+++ b/test/adaptors_test.cc
@@ -1377,13 +1377,15 @@
dir_map[graph.down(n4)] = graph.u(graph.down(n4)) == n4;
// Apply several adaptors on the grid graph
- typedef SplitNodes<Orienter< const GridGraph, GridGraph::EdgeMap<bool> > >
- SplitGridGraph;
+ typedef Orienter< const GridGraph, GridGraph::EdgeMap<bool> >
+ OrientedGridGraph;
+ typedef SplitNodes<OrientedGridGraph> SplitGridGraph;
typedef Undirector<const SplitGridGraph> USplitGridGraph;
checkConcept<concepts::Digraph, SplitGridGraph>();
checkConcept<concepts::Graph, USplitGridGraph>();
- SplitGridGraph adaptor = splitNodes(orienter(graph, dir_map));
+ OrientedGridGraph oadaptor = orienter(graph, dir_map);
+ SplitGridGraph adaptor = splitNodes(oadaptor);
USplitGridGraph uadaptor = undirector(adaptor);
// Check adaptor
More information about the Lemon-commits
mailing list