Talk:Ford–Fulkerson algorithm

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

After 1998 more steps …[edit]

I'm new to this, so I didnt change it directly because I'm not 100% sure. But the flow isn't increased by 1 but by min{capacies of edges on the found path}, so it should only take 1 step to fill one path up. —Preceding unsigned comment added by 85.180.69.27 (talk) 12:19, 20 February 2009 (UTC)[reply]

Algorithms by nature terminate. this article is full of references to "whether the algorithm terminates" and "a variation which is guaranteed to terminate". these phrases are problematic! is F-F not an algorithm at all, but an approach/procedure? Aaronbrick 04:34, 12 May 2006 (UTC)[reply]

This is a valid point. This entry should actually be called the Ford-Fulkerson Method. It's not called an algorithm, because there is some part in the procedure which is left unspecified. The Ford-Fulkerson Method says that you need to keep finding augmenting paths in the residual graph, but does not limit you to any specific way of finding those augmenting paths. That is exactly why the procedure may never terminate, as described in the body of the article. On the other hand, an algorithm should always terminate with an answer, or with announcing that no answer can be found. That is the basic criteria for decidability, and an algorithm is formally defined to be a procedure for testing membership for decidable languages. —Preceding unsigned comment added by 128.227.179.104 (talk) 02:58, 11 October 2007 (UTC)[reply]
We should use the name most commonly used in the field, regardless of whether it may be technically inaccurate accordingly to a particular definition of "algorithm." I have seen it called "the Ford-Fulkerson method" though, so this may be justified. Dcoetzee 00:10, 3 October 2008 (UTC)[reply]
As I know the term algorithm it doesnt have to terminate.
"We should use the name most commonly used in the field" Why? If it's an incorrect, but common term then just let that term redirect to the correct term. Wikipedia is enormously responsible for the terms people use "in the field", so it would just be responsible for perpetuating an incorrect term "in the field". As for "As I know the term algorithm it doesnt have to terminate", it seems you know it differently than the rest of us. Mangledorf (talk) 00:15, 13 November 2009 (UTC)[reply]


I concur with the next-to-last contributor. The definition of the concept "algorithm" should not postulate termination. Otherwise, due to the non-decidability of halting, you would have an unacceptable situation in which you cannot tell whether something is an algorithm or not unless you have a termination proof for it! Of course, given an algorithm, you are entitled to seek proofs that it terminates, or more generally that it is correct wrt to any given specification. This is the way the issue would be presented in a Computability textbook; admittedly, in Algorithms textbooks (where the Ford-Fulkerson method would often be found), one typically emphasizes that algorithms should be correct and, in particular, terminate, to the degree that it may be understood that an incorrect algorithm is not worthy of its name. But on a more foundational level, both correct and incorrect, terminating and non-terminating algorithms must be admitted. Moreover, non-terminating algorithms are useful in many practical situations, for example, when an algorithm cannot hit an optimal solution exactly in finite time, but only converge to the optimum; and the user may decide to stop the process at some point according to their resources or requirements. See also Algorithm in Wikipedia. AmirOnWiki (talk) 23:31, 10 February 2010 (UTC)[reply]
Regardless of the termination issue, I find the usage of "the Ford-Fulkerson method" to be a good choice, as it emphasizes that the sub-algorithm to find augmenting paths has been left unspecified. AmirOnWiki (talk) 04:37, 11 February 2010 (UTC)[reply]

Error in example_2.svg[edit]

The middle arrow from should point from C to B, not from B to C.

Errors in the Algorithm Section[edit]

There seems to be a slight error in the "Algorithm" section. There are three formulas with three informal descriptions next to them. The informal descriptions for the second and third seem to have been interchanged. In short, it is:

2. f(u,v)=-f(v,u) - We maintain the net flow.
3. sum(f(u,v))=0 for all nodes except s and t - The amount of flow into a node equals the flow out of the node.

whereas it should be:

2. f(u,v)=-f(v,u) - The amount of flow into a node equals the flow out of the node.
3. sum(f(u,v))=0 for all nodes except s and t - We maintain the net flow.

I would also suggest replacing "for all nodes" with "for all nodes u" for clarity.

Viridium 03:27, 10 April 2007 (UTC)[reply]

The wording is perhaps a bit unclear. By "maintaining the net flow", it is meant that if there are in reality going for example 5 trucks from to , and 3 trucks from to , then we maintain and , such that . For the third invariant, it might get clearer if written
where is only the negative values, and only the positive. Klem fra Nils Grimsmo 05:39, 11 April 2007 (UTC

Nice clarification but some detail is wrong there (in equation above). There is a minus sign missing. Where this minus sign should go depends on which convention you use for the defintion of  : Is it the absolute value of the negative flow, or is it the actual negative flow complete with its numerical negativity?

In the example, I don't see how the possibility of flow directly along ABD is skipped at the second step, given that this example of bad behaviour is claiming to result from depth first search. Surely, in an alphabetic "depth first search", path ABD should be tried next -- before ACBD is tried! --Preceding unsigned comment left by 128.227.179.104 02:58, 11 October 2007 (UTC)

The depth-first search must not be alphabetic - it seems to be actively worst-case. That sort of thing can happen if the edges are stored in a nondeterministic, unordered set instead of a matrix. It's pretty unlikely, but that's what worst-case means. --Brilliand 22:58, 26 October 2007 (UTC)[reply]

Svend 11:36, 03 September 2011 (UTC)[reply]

In the mentioned lines above it now says:
Flow conservation: That is, unless u = s or w = t. The net flow to a node is zero, except for the source, which "produces" flow, and the sink, which "consumes" flow.
But I think this is slightly wrong. It should say "unless or or similar as f(t,w) would be negative (if there was any flow) and likewise f(u,s) would be negative.

counterexample[edit]

It would be nice to have the counterexample of when it doesn't terminate and converges to the wrong value.--MarSch (talk) 15:43, 2 October 2008 (UTC)[reply]

I found a likely reference for this (http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.57.2479), but I don't know if I'll have time to write it up. --MarSch (talk) 15:50, 2 October 2008 (UTC)[reply]
The book "Matching Theory" by Plummer and Lovasz has it. Zerotalk 12:27, 15 October 2009 (UTC)[reply]
I added the counterexample. Svick (talk) 01:38, 16 October 2009 (UTC)[reply]
Thanks, but can you describe it more, please? The algorithm only converges to the wrong value if a particular sequence of augmenting paths is chosen. Zerotalk
I expanded that section. Do you think it is understandable and correct? (Like you pointed out, it wasn't before.) Svick (talk) 23:34, 9 November 2009 (UTC)[reply]
The flow converges to 3+2r, not 3. Also, I made the computations and I think that it's enough that M is at least 2 (not that it's important). —Preceding unsigned comment added by Mkonva (talkcontribs) 04:37, 2 December 2009 (UTC)[reply]
I checked the source I cited and it says that the flow converges to . But I think you are right and it should be , but maybe I misunderstood something. Could somebody read the paper and confirm that it's really wrong? If that is the case, we should find another source.
I think that you are correct that is sufficient, but again, the source says it's . Again, we should find another source.
Thanks for finding the (possible) errors. Svick (talk) 18:54, 2 December 2009 (UTC)[reply]

Python example[edit]

Isn't this more like the Edmonds–Karp algorithm? I thought the Ford Fulkerson keeps the selection of the paths unspecified... — Preceding unsigned comment added by 2001:9E8:1120:8C00:386F:F73E:7DE:BE89 (talk) 19:34, 3 April 2024 (UTC)[reply]

The python code is useless without an example call. In particular, it is not clear how to instantiate the class (and why should it be a class anyway). — Preceding unsigned comment added by 2001:9E8:1120:8C00:386F:F73E:7DE:BE89 (talk) 09:31, 3 April 2024 (UTC)[reply]

An anon made the following comment on the python program. Someone should check it.

"The code is incomplete and does not work at all. The understanding of language features of Python is very good. But the understanding of the Ford-Fulkerson algorithm is very poor. The DFS in find_path is not even correct." Zerotalk 12:23, 15 October 2009 (UTC)[reply]
I can see some problems in the find_path code (the path it returns isn't a simple path when it should and it doesn't run in optimal time), that sould be corrected, but I think that the whole code nevertheless works correctly. Svick (talk) 23:37, 15 October 2009 (UTC)[reply]
I may be wrong, but I see at least one more problem: why is adj[u] not the same as adj[v] in add_edge? Should both the edges not have the same capacity w instead of one being 0? musically_ut (talk) 07:04, 5 November 2009 (UTC)[reply]
No, this version is also correct. In directed network, edge from to with capacity doesn't mean that there is an edge from to with the same capacity. If your network is undirected (similar to real pipes), you have to add each edge twice, once for every direction. Your version would work too, but only for undirected networks. Svick (talk) 23:42, 9 November 2009 (UTC)[reply]

The following example demonstrates a bug in the code:

g=FlowNetwork()
map(g.add_vertex, ['s','n','t'])
g.add_edge('s','n',4)
g.add_edge('s','n',4)
g.add_edge('s','t',4)
g.add_edge('s','t',4)
print g.max_flow('s','t')

The code incorrectly gives the flow value 12. The problem is that the self.flow variable can only handle one edge between any two nodes, whereas this is often not the case. When adding an arc (i,j) the code also adds the arc (j,i). If now the arc (j,i) is added by the user there is a problem. --Petter (talk) 15:20, 21 April 2010 (UTC)[reply]

I have now fixed that particular bug. --Petter (talk) 15:26, 21 April 2010 (UTC)[reply]

The problem noted above that find_path doesn't return a simple path can lead to a huge performance loss. In my application it took about 16 minutes to find some maximum flows in a graph. To force simple paths I added the following function:

def edgeinpath(self,edge, path):
    for (pedge, presidual) in path:
         if pedge == edge or pedge == edge.redge:
            return True
    return False

and replaced

if residual > 0 and not (edge,residual) in path:

with

if residual > 0 and not self.edgeinpath(edge, path):

This reduced the running time to under 3 seconds. Wouter - 12:40, 18 August 2010 (UTC) —Preceding unsigned comment added by 212.19.199.55 (talk)

Code looks like Erlang[edit]

The following comment was moved from the article (section Python implementation), where it doesn't belong. Svick (talk) 22:35, 3 November 2010 (UTC)[reply]

Is it just me or does this code look more like Erlang than Python? There's lots of tail recursion, pattern matching, list concatenation, etc, in this code. All of which are common programming practice in Erlang. — Preceding unsigned comment added by 75.92.222.10 (talk) 04:37, 3 November 2010 (UTC)[reply]

Why citations are in the Notes section?[edit]

I wonder why all my citations were placed in the "Notes" section. Is this an error that needs to be fixed? 09:21, 27 March 2015 (UTC) Kapil.xerox (talk) 09:21, 27 March 2015 (UTC)[reply]

Merge with Edmonds-Karp algorithm[edit]

The Edmonds-Karp algorithm is merely an implementation of Ford-Fulkerson that specifies that the augmenting path should be found by breadth-first search. The article on Edmonds-Karp is WP:Semi-duplicate and contains largely similar content, all of which really should be in this article. Merge Edmonds-Karp into this article? IntGrah (talk) 22:51, 12 April 2024 (UTC)[reply]