module Flow: sig end
Maximum flow algorithms
|
module type FLOW = sig end
Goldberg maximal flow algorithm
|
module type G_GOLDBERG = sig end
module Goldberg: functor (G : G_GOLDBERG) -> functor (F : sig end) -> sig end
Ford-Fulkerson maximal flow algorithm
|
module type G_FORD_FULKERSON = sig end
module Ford_Fulkerson: functor (G : G_FORD_FULKERSON) -> functor (F : sig end) -> sig end