Module Flow


module Flow: sig  end
Algorithms on flows



Maximum flow algorithms


module type FLOW = sig  end
Signature for edges' flow


Goldberg maximal flow algorithm


module type G_GOLDBERG = sig  end
Minimal graph signature for Goldberg
module Goldberg: functor (G : G_GOLDBERG) -> functor (F : sig  end) -> sig  end


Ford-Fulkerson maximal flow algorithm


module type G_FORD_FULKERSON = sig  end
Minimal graph signature for Ford-Fulkerson
module Ford_Fulkerson: functor (G : G_FORD_FULKERSON) -> functor (F : sig  end) -> sig  end