view docs/examples/algorithm-dinic.pseudocode @ 295:152dd8194f3b v3.0

***** v3.0
author Franz Glasner <fzglas.hg@dom66.de>
date Sat, 23 May 2026 12:40:10 +0200
parents 418846a2623c
children
line wrap: on
line source

// -*- coding: utf-8; indent-tabs-mode: nil -*-
\ALGORITHM{Dinic's Algorithm} \WITH
  \INPUT{A network \expr{G = ((V , E), c, s, t)}.}
  \OUTPUT{An \expr{st} flow \expr{f} of maximum value.}
\IS
  \TEXT{1. Set \expr{f(e) = 0} for each \expr{e  E}.
  2. Construct \expr{G_L} from \expr{G_f} of \expr{G}.
     If \expr{\text{dist}(t) = }, stop and output \expr{f}.
  3. Find a blocking flow \expr{f\'} in \expr{G_L}.
  4. Augment flow \expr{f} by \expr{f\'} and go back to step 2.}
\END ALGORITHM