1.1 --- a/lemon/smart_graph.h Fri Apr 18 06:20:32 2008 +0100
1.2 +++ b/lemon/smart_graph.h Mon Apr 21 17:35:12 2008 +0200
1.3 @@ -558,7 +558,7 @@
1.4 return Node(n);
1.5 }
1.6
1.7 - Edge addArc(Node u, Node v) {
1.8 + Edge addEdge(Node u, Node v) {
1.9 int n = arcs.size();
1.10 arcs.push_back(ArcT());
1.11 arcs.push_back(ArcT());
1.12 @@ -639,7 +639,7 @@
1.13 ///and \c t.
1.14 ///\return the new edge.
1.15 Edge addEdge(const Node& s, const Node& t) {
1.16 - return Parent::addArc(s, t);
1.17 + return Parent::addEdge(s, t);
1.18 }
1.19
1.20 ///Clear the graph.