diff -r 02971275e7bf -r 5222a3c470ed lemon/graph_adaptor.h --- a/lemon/graph_adaptor.h Tue Jul 22 11:20:06 2008 +0000 +++ b/lemon/graph_adaptor.h Tue Jul 22 11:29:57 2008 +0000 @@ -113,12 +113,12 @@ int id(const Node& v) const { return graph->id(v); } int id(const Edge& e) const { return graph->id(e); } - Node fromNodeId(int ix) const { - return graph->fromNodeId(ix); + Node nodeFromId(int ix) const { + return graph->nodeFromId(ix); } - Edge fromEdgeId(int ix) const { - return graph->fromEdgeId(ix); + Edge edgeFromId(int ix) const { + return graph->edgeFromId(ix); } int maxNodeId() const {