src/hugo/graph_wrapper.h
changeset 861 021e513a2d83
parent 854 baf0b6e40211
child 870 9bde6cd8e3da
     1.1 --- a/src/hugo/graph_wrapper.h	Thu Sep 16 10:26:14 2004 +0000
     1.2 +++ b/src/hugo/graph_wrapper.h	Thu Sep 16 10:59:30 2004 +0000
     1.3 @@ -380,7 +380,7 @@
     1.4        NodeIt(const SubGraphWrapper<Graph, NodeFilterMap, EdgeFilterMap>& _gw) : 
     1.5  	Node(typename Graph::NodeIt(*(_gw.graph))), gw(&_gw) { 
     1.6  	while (*static_cast<Node*>(this)!=INVALID && 
     1.7 -	       !(*(gw->edge_filter_map))[*this]) 
     1.8 +	       !(*(gw->node_filter_map))[*this]) 
     1.9  	  *(static_cast<Node*>(this))=
    1.10  	    ++(typename Graph::NodeIt(*(gw->graph), *this));
    1.11        }