DinicsResult<T> constructor

const DinicsResult<T>({
  1. required num maxFlow,
  2. required Map<T, List<DinicsEdge<T>>> flowNetwork,
  3. required int phasesCount,
  4. required List<Map<T, int>> layeredNetworks,
  5. required List<num> blockingFlows,
  6. required Stopwatch executionTime,
})

Implementation

const DinicsResult({
  required this.maxFlow,
  required this.flowNetwork,
  required this.phasesCount,
  required this.layeredNetworks,
  required this.blockingFlows,
  required this.executionTime,
});