Returns all edges in this edge-weighted graph, excludeing self loops.
To iterate over the edges in this edge-weighted graph, use foreach notation:
foreach (Edge e in G.Edges()).
Namespace: Algs4NetAssembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public IEnumerable<FlowEdge> Edges()
Return Value
Type:
IEnumerableFlowEdgeall edges in this edge-weighted graph, as an iterable
See Also