Differences

This shows you the differences between two versions of the page.

Link to this comparison view

courses:cs211:winter2012:journals:jeanpaul:chaptersevensectioni [2012/04/02 10:52] – created mugabejcourses:cs211:winter2012:journals:jeanpaul:chaptersevensectioni [2012/04/02 11:03] (current) – [The Problem] mugabej
Line 46: Line 46:
 --> Residual edges with positive residual capacity\\ --> Residual edges with positive residual capacity\\
 --> E<sub>f</sub> = {e : f(e) < c(e)} ∪ {e<sup>R</sup> : f(e) > 0}\\ --> E<sub>f</sub> = {e : f(e) < c(e)} ∪ {e<sup>R</sup> : f(e) > 0}\\
 +\\
 +**Augmenting Path Algorithm**\\
  
 +--> Ford-Fulkerson(G, s, t, c)\\
 +--> foreach e ∈ E f(e) = 0 # initially no flow\\
 +--> Gf = residual graph\\
 +--> while there exists augmenting path P\\
 +.f = Augment(f, c, P) # change the flow\\
 +.update Gf # build a new residual graph\\
 +--> return f\\
 +Augment(f, c, P)
 +--> b = bottleneck(P) # edge on P with least capacity\\
 +--> foreach e ∈ P\\
 +.if (e ∈ E) f(e) = f(e) + b # forward edge, forward flow\\
 +.else f(eR) = f(e) - b # forward edge, backward flow\\
 +--> return f\\
 +** Analyzing the Algorithm**\\
 +\\
 +--> At every intermediate stage of the Ford-Fulkerson Algorithm, the flow values {f(e)} and the residual capacities in G<sub>f</sub> are integers.\\
 +--> With the above assumption, the Ford-Fulkerson Algorithm terminates in at most C iterations of the While loop.\\
 +--> And the Algorithm can be implemented to run in O(mC) time.\\
 +
 +Reading this section outside class time helped me a lot. In all fairness, I was lost in lectures as things were fast in a very bad week for me. I was delighted to read this section and see things gradually unfold and start making sense.\\
 +For this very reason, I give this section an 9/10.
  
courses/cs211/winter2012/journals/jeanpaul/chaptersevensectioni.1333363965.txt.gz · Last modified: 2012/04/02 10:52 by mugabej
CC Attribution-Noncommercial-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0