These are implementations of popular max flow algorithms. So far, Ford-Fulkerson and Preflow Push have been implemented.
# Using Ford-Fulkerson algorithmMaxFlow.max_flow(graph,source,sink,FordFulkersonStrategy)# Using Preflow-Push algorithmMaxFlow.max_flow(graph,source,sink,PreflowPushStrategy)