| 16 | { |
| 17 | |
| 18 | bool IsStronglyConnectedComponent(const util::DistTableWrapper<EdgeDuration> &result_table) |
| 19 | { |
| 20 | return std::find(std::begin(result_table), std::end(result_table), INVALID_EDGE_DURATION) == |
| 21 | std::end(result_table); |
| 22 | } |
| 23 | |
| 24 | bool IsSupportedParameterCombination(const bool fixed_start, |
| 25 | const bool fixed_end, |