diff -r d9205a711324 -r 49fe71fce7fb demo/graph_orientation.cc --- a/demo/graph_orientation.cc Fri Jan 27 08:17:25 2006 +0000 +++ b/demo/graph_orientation.cc Fri Jan 27 08:18:47 2006 +0000 @@ -70,7 +70,7 @@ ListGraph::NodeMap def(g); //deficiency of the nodes def = subMap(f,InDegMap(g)); - IterableBoolNodeMap active(g,false); + IterableBoolMap active(g,false); for(NodeIt n(g);n!=INVALID;++n) active[n]=(def[n]>0); ListGraph::EdgeMap rev(g,false); // rev[e]==true <=> e is be @@ -79,7 +79,7 @@ int nodeNum=countNodes(g); Node act; - while((act=IterableBoolNodeMap::TrueIt(active))!=INVALID) { + while((act=IterableBoolMap::TrueIt(active))!=INVALID) { std::cout << "Process node " << label[act] << " (def=" << def[act] << " lev=" << level[act] << "): ";