lemon/graph_adaptor.h
changeset 2617 5222a3c470ed
parent 2553 bfced05fa852
     1.1 --- a/lemon/graph_adaptor.h	Tue Jul 22 11:20:06 2008 +0000
     1.2 +++ b/lemon/graph_adaptor.h	Tue Jul 22 11:29:57 2008 +0000
     1.3 @@ -113,12 +113,12 @@
     1.4      int id(const Node& v) const { return graph->id(v); }
     1.5      int id(const Edge& e) const { return graph->id(e); }
     1.6  
     1.7 -    Node fromNodeId(int ix) const {
     1.8 -      return graph->fromNodeId(ix);
     1.9 +    Node nodeFromId(int ix) const {
    1.10 +      return graph->nodeFromId(ix);
    1.11      }
    1.12  
    1.13 -    Edge fromEdgeId(int ix) const {
    1.14 -      return graph->fromEdgeId(ix);
    1.15 +    Edge edgeFromId(int ix) const {
    1.16 +      return graph->edgeFromId(ix);
    1.17      }
    1.18  
    1.19      int maxNodeId() const {