12#include <alib/unordered_map>
20namespace maximum_flow {
Class extending the unordered_map class from the standard library. Original reason is to allow printi...
Definition: unordered_map.hpp:47
Definition: DirectedGraph.hpp:26
Definition: UndirectedGraph.hpp:26
Definition: FordFulkerson.hpp:31
static Flow findMaximumFlow(const DirectedGraph &graph, const node::Node &source, const node::Node &sink)
Definition: FordFulkerson.cpp:190
ext::unordered_map< node::Node, ext::unordered_map< node::Node, int > > Capacity
Definition: FordFulkerson.hpp:22
ext::unordered_map< node::Node, ext::unordered_map< node::Node, int > > Flow
Definition: FordFulkerson.hpp:23
Definition: ReconstructPath.hpp:14