Skip to content

Commit

Permalink
use interface as param
Browse files Browse the repository at this point in the history
  • Loading branch information
justcoding121 committed Apr 23, 2019
1 parent 34b8a97 commit fc3cd84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Advanced.Algorithms/Graph/Flow/FordFulkerson.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public W ComputeMaxFlow(IDiGraph<T> graph,
/// <summary>
/// Return all flow Paths.
/// </summary>
public List<List<T>> ComputeMaxFlowAndReturnFlowPath(WeightedDiGraph<T, W> graph,
public List<List<T>> ComputeMaxFlowAndReturnFlowPath(IDiGraph<T> graph,
T source, T sink)
{
validateOperator(graph);
Expand Down

0 comments on commit fc3cd84

Please sign in to comment.