| 416 | */ |
| 417 | |
| 418 | void InsertEdges(ContractorGraph &graph, |
| 419 | const tbb::concurrent_vector<ContractorEdge> &inserted_edges) |
| 420 | { |
| 421 | for (const ContractorEdge &edge : inserted_edges) |
| 422 | { |
| 423 | graph.InsertEdge(edge.source, edge.target, edge.data); |
| 424 | } |
| 425 | } |
| 426 | |
| 427 | /** |
| 428 | * @brief Recalculate the priorities of all neighbouring nodes. |
no test coverage detected