Expand description

Compute the maximum flow that can go through a directed graph using the Edmonds Karp algorithm.

This module contains several functions helping compute the flow on a given graph, as well as a structure which allows iterative modifications of the network. When the network is modified, the flow is recomputed and tries to take advantage of computations already performed on unchanged or augmented edges.

Structs§

Traits§

Functions§

Type Aliases§

  • Type alias for Edmonds-Karp maximum flow result.
  • Type alias for representing an edge in a graph