27 Matching Annotations
  1. Mar 2023
    1. 6.18

      gradute based, proof.

      Observe that: A minimum flow will require some lowerbound, or else this is trivial because zero flow will always be an optimal solution.

      We need to convert the problem to an max flow, with/without the lower bound. 2 Applications of the maxflow probably means that we need a lower bound yes.

    2. Figure 6.22 Examples for Exercises 6.12 and 6.13.

      Undergraduate based:

      Using the shortest augmenting path algorithm, solve the maximum flow problem give in Figure 6.22(b). Describe the augmenting paths at each iteration as well as any advances and/or retreats and the distance labels at each iteration. Verify you have the maximum flow by exhibiting an appropriate cut.

      In brief, run the Dinic's algorithm for this graph.

  2. Feb 2023
    1. Assumption 6.4.

      \((i, j)\in A\iff (j, i)\in A\). We allow for arcs with zero capacity. For all single direction arc, the opposite direction arc on the graph is having a capacity of zero.

      I think this is essentially a residual graph on the zero flow, which is trivially feasible. Residual graph on the network is covered in the later part of the chapter (pg177).