Click or drag to resize
FlowNetworkEdges Method
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: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public IEnumerable<FlowEdge> Edges()

Return Value

Type: IEnumerableFlowEdge
all edges in this edge-weighted graph, as an iterable
See Also