MaximumFlowProblem
MaximumFlowProblem refers to the problem of finding the largest feasible flow from a designated source to a designated sink in a directed network with edge capacities. The input is a graph G = (V, E) together with a nonnegative capacity function c on edges and two distinguished vertices: a source s and a sink t.
A flow f assigns to each edge (u, v) a value f(u, v) with 0 ≤ f(u, v)
The maximum flow problem asks for a feasible flow that maximizes |f|. A fundamental result is the
Algorithmically, maximum flow problems are solved by augmenting-path methods. Ford-Fulkerson builds a residual graph and repeatedly
Applications of the maximum flow problem include network routing, transportation planning, bipartite matching, and image segmentation