#include <lemon/smart_graph.h>
Definition at line 242 of file smart_graph.h.
Public Member Functions | |
Edge | findEdge (Node u, Node v, Edge prev=INVALID) |
Finds an edge between two nodes. | |
Classes | |
class | SnapShot |
Class to make a snapshot of the graph and to restrore to it later. More... |
|
Finds an edge from node
If
u to v as it follows. for(Edge e=G.findEdge(u,v);e!=INVALID;e=G.findEdge(u,v,e)) { ... }
Definition at line 260 of file smart_graph.h. |