diff -r e225719bde6b -r 2d806130e700 test/max_matching_test.cc --- a/test/max_matching_test.cc Thu Jan 26 06:44:22 2006 +0000 +++ b/test/max_matching_test.cc Thu Jan 26 15:42:13 2006 +0000 @@ -31,10 +31,10 @@ int main() { - typedef UndirListGraph Graph; + typedef ListUGraph Graph; typedef Graph::Edge Edge; - typedef Graph::UndirEdgeIt UndirEdgeIt; + typedef Graph::UEdgeIt UEdgeIt; typedef Graph::IncEdgeIt IncEdgeIt; typedef Graph::NodeIt NodeIt; typedef Graph::Node Node; @@ -138,7 +138,7 @@ check ( coincide, "The decompositions do not coincide! " ); bool noedge=true; - for(UndirEdgeIt e(g); e!=INVALID; ++e) { + for(UEdgeIt e(g); e!=INVALID; ++e) { if ( (pos[g.target(e)]==max_matching.C && pos[g.source(e)]==max_matching.D) || (pos[g.target(e)]==max_matching.D && pos[g.source(e)]==max_matching.C) ) noedge=false;