Ford–Fulkerson algorithm

The FordFulkerson method or Ford–Fulkerson algorithm (FFA) is an algorithm that computes the maximum flow in a flow network. It is called a "method" instead of an "algorithm" as the approach to finding augmenting paths in a residual graph is not fully specified[1] or it is specified in several implementations with different running times.[2] It was published in 1956 by L. R. Ford, Jr. and D. R. Fulkerson.[3] The name "FordFulkerson" is often also used for the Edmonds–Karp algorithm, which is a specialization of FordFulkerson.

The idea behind the algorithm is as follows: as long as there is a path from the source (start node) to the sink (end node), with available capacity on all edges in the path, we send flow along one of the paths. Then we find another path, and so on. A path with available capacity is called an augmenting path.

Algorithm

Let G(V,E) be a graph, and for each edge from u to v, let c(u,v) be the capacity and f(u,v) be the flow. We want to find the maximum flow from the source s to the sink t. After every step in the algorithm the following is maintained:

Capacity constraints: \forall (u, v) \in E \ f(u,v) \le c(u,v) The flow along an edge can not exceed its capacity.
Skew symmetry: \forall (u, v) \in E \ f(u,v) = - f(v,u) The net flow from u to v must be the opposite of the net flow from v to u (see example).
Flow conservation: \forall u \in V: u \neq s \text{ and } u \neq t \Rightarrow \sum_{w \in V} f(u,w) = 0 That is, unless u is s or t. The net flow to a node is zero, except for the source, which "produces" flow, and the sink, which "consumes" flow.
Value(f): \sum_{(s,u) \in E} f(s, u) = \sum_{(v,t) \in E} f(v, t) That is, the flow leaving from s must be equal to the flow arriving at t.

This means that the flow through the network is a legal flow after each round in the algorithm. We define the residual network G_f(V,E_f) to be the network with capacity c_f(u,v) = c(u,v) - f(u,v) and no flow. Notice that it can happen that a flow from v to u is allowed in the residual network, though disallowed in the original network: if f(u,v)>0 and c(v,u)=0 then c_f(v,u)=c(v,u)-f(v,u)=f(u,v)>0.

Algorithm FordFulkerson

Inputs Given a Network G = (V,E) with flow capacity c, a source node s, and a sink node t
Output Compute a flow f from s to t of maximum value
  1. f(u,v) \leftarrow 0 for all edges (u,v)
  2. While there is a path p from s to t in G_f, such that c_f(u,v) > 0 for all edges (u,v) \in p:
    1. Find c_f(p) = \min\{c_f(u,v) : (u,v) \in p\}
    2. For each edge (u,v) \in p
      1. f(u,v) \leftarrow f(u,v) + c_f(p) (Send flow along the path)
      2. f(v,u) \leftarrow f(v,u) - c_f(p) (The flow might be "returned" later)

The path in step 2 can be found with for example a breadth-first search or a depth-first search in G_f(V,E_f). If you use the former, the algorithm is called Edmonds–Karp.

When no more paths in step 2 can be found, s will not be able to reach t in the residual network. If S is the set of nodes reachable by s in the residual network, then the total capacity in the original network of edges from S to the remainder of V is on the one hand equal to the total flow we found from s to t, and on the other hand serves as an upper bound for all such flows. This proves that the flow we found is maximal. See also Max-flow Min-cut theorem.

If the graph G(V,E) has multiple sources and sinks, we act as follows: Suppose that T=\{t|t \text{ is a sink}\} and S=\{s|s \text{ is a source}\}. Add a new source  s^* with an edge (s^*,s) from s^* to every node  s\in S , with capacity c(s^*,s)=d_s\;(d_s=\sum_{(s,u)\in E}c(s,u)). And add a new sink  t^* with an edge (t, t^*) from every node  t\in T to t^* , with capacity c(t, t^*)=d_t\;(d_t=\sum_{(v,t)\in E}c(v,t)). Then apply the FordFulkerson algorithm.

Also, if a node u has capacity constraint d_u, we replace this node with two nodes u_{in},u_{out}, and an edge  (u_{in},u_{out}) , with capacity c(u_{in},u_{out})=d_u. Then apply the FordFulkerson algorithm.

Complexity

By adding the flow augmenting path to the flow already established in the graph, the maximum flow will be reached when no more flow augmenting paths can be found in the graph. However, there is no certainty that this situation will ever be reached, so the best that can be guaranteed is that the answer will be correct if the algorithm terminates. In the case that the algorithm runs forever, the flow might not even converge towards the maximum flow. However, this situation only occurs with irrational flow values. When the capacities are integers, the runtime of Ford–Fulkerson is bounded by O(E f) (see big O notation), where E is the number of edges in the graph and f is the maximum flow in the graph. This is because each augmenting path can be found in O(E) time and increases the flow by an integer amount of at least 1.

A variation of the FordFulkerson algorithm with guaranteed termination and a runtime independent of the maximum flow value is the Edmonds–Karp algorithm, which runs in O(VE^2) time.

Integral example

The following example shows the first steps of Ford–Fulkerson in a flow network with 4 nodes, source A and sink D. This example shows the worst-case behaviour of the algorithm. In each step, only a flow of 1 is sent across the network. If breadth-first-search were used instead, only two steps would be needed.

Path Capacity Resulting flow network
Initial flow network
A,B,C,D 
\begin{align}
  & \min(c_f(A,B), c_f(B,C), c_f(C,D)) \\
= & \min(c(A,B)-f(A,B) ,c(B,C)-f(B,C), c(C,D)-f(C,D)) \\
= & \min(1000-0, 1-0, 1000-0) = 1
\end{align}
A,C,B,D 
\begin{align}
  & \min(c_f(A,C), c_f(C,B), c_f(B,D)) \\
= & \min(c(A,C)-f(A,C), c(C,B)-f(C,B), c(B,D)-f(B,D)) \\
= & \min(1000-0, 0-(-1), 1000-0) = 1
\end{align}
After 1998 more steps …
Final flow network

Notice how flow is "pushed back" from C to B when finding the path A,C,B,D.

Non-terminating example

Consider the flow network shown on the right, with source s, sink t, capacities of edges e_1, e_2 and e_3 respectively 1, r=(\sqrt{5}-1)/2 and 1 and the capacity of all other edges some integer M \ge 2. The constant r was chosen so, that r^2 = 1 - r. We use augmenting paths according to the following table, where p_1 = \{ s, v_4, v_3, v_2, v_1, t \}, p_2 = \{ s, v_2, v_3, v_4, t \} and p_3 = \{ s, v_1, v_2, v_3, t \}.

Step Augmenting path Sent flow Residual capacities
e_1 e_2 e_3
0 r^0=1 r 1
1 \{ s, v_2, v_3, t \} 1 r^0 r^1 0
2 p_1 r^1 r^2 0 r^1
3 p_2 r^1 r^2 r^1 0
4 p_1 r^2 0 r^3 r^2
5 p_3 r^2 r^2 r^3 0

Note that after step 1 as well as after step 5, the residual capacities of edges e_1, e_2 and e_3 are in the form r^n, r^{n+1} and 0, respectively, for some n \in \mathbb{N}. This means that we can use augmenting paths p_1, p_2, p_1 and p_3 infinitely many times and residual capacities of these edges will always be in the same form. Total flow in the network after step 5 is 1 + 2(r^1 + r^2). If we continue to use augmenting paths as above, the total flow converges to \textstyle 1 + 2\sum_{i=1}^\infty r^i = 3 + 2r, while the maximum flow is 2M + 1. In this case, the algorithm never terminates and the flow doesn't even converge to the maximum flow.[4]

Python implementation

class Edge(object):
    def __init__(self, u, v, w):
        self.source = u
        self.sink = v  
        self.capacity = w
    def __repr__(self):
        return "%s->%s:%s" % (self.source, self.sink, self.capacity)

class FlowNetwork(object):
    def __init__(self):
        self.adj = {}
        self.flow = {}
 
    def add_vertex(self, vertex):
        self.adj[vertex] = []
 
    def get_edges(self, v):
        return self.adj[v]
 
    def add_edge(self, u, v, w=0):
        if u == v:
            raise ValueError("u == v")
        edge = Edge(u,v,w)
        redge = Edge(v,u,0)
        edge.redge = redge
        redge.redge = edge
        self.adj[u].append(edge)
        self.adj[v].append(redge)
        self.flow[edge] = 0
        self.flow[redge] = 0
 
    def find_path(self, source, sink, path):
        if source == sink:
            return path
        for edge in self.get_edges(source):
            residual = edge.capacity - self.flow[edge]
            if residual > 0 and edge not in path:
                result = self.find_path( edge.sink, sink, path + [edge]) 
                if result != None:
                    return result
 
    def max_flow(self, source, sink):
        path = self.find_path(source, sink, [])
        while path != None:
            residuals = [edge.capacity - self.flow[edge] for edge in path]
            flow = min(residuals)
            for edge in path:
                self.flow[edge] += flow
                self.flow[edge.redge] -= flow
            path = self.find_path(source, sink, [])
        return sum(self.flow[edge] for edge in self.get_edges(source))

Usage example

For the example flow network in maximum flow problem we do the following:

>>> g = FlowNetwork()
>>> [g.add_vertex(v) for v in "sopqrt"]
[None, None, None, None, None, None]
>>>
>>> g.add_edge('s','o',3)
>>> g.add_edge('s','p',3)
>>> g.add_edge('o','p',2)
>>> g.add_edge('o','q',3)
>>> g.add_edge('p','r',2)
>>> g.add_edge('r','t',3)
>>> g.add_edge('q','r',4)
>>> g.add_edge('q','t',2)
>>> print (g.max_flow('s','t'))
5

Notes

  1. Laung-Terng Wang, Yao-Wen Chang, Kwang-Ting (Tim) Cheng (2009). Electronic Design Automation: Synthesis, Verification, and Test. Morgan Kaufmann. p. 204. ISBN 0080922007.
  2. Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, Clifford Stein (2009). Introduction to Algorithms. MIT Press. p. 714. ISBN 0262258102.
  3. Ford, L. R.; Fulkerson, D. R. (1956). "Maximal flow through a network". Canadian Journal of Mathematics 8: 399. doi:10.4153/CJM-1956-045-5.
  4. Zwick, Uri (21 August 1995). "The smallest networks on which the Ford–Fulkerson maximum flow procedure may fail to terminate". Theoretical Computer Science 148 (1): 165–170. doi:10.1016/0304-3975(95)00022-O.

References

See also

External links

Media related to Ford–Fulkerson algorithm at Wikimedia Commons

This article is issued from Wikipedia - version of the Friday, January 22, 2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.