コード例 #1
0
ファイル: FlowOptimizer.cs プロジェクト: lin4you/algoinf
 // compute residual path from source to sink using depth first search
 public virtual List <int> ComputeResidualPath(FlowGraph network)
 {
     // Subclasses need to override this to find a residual path.
     return(null);
 }