| 13 | } |
| 14 | |
| 15 | void dspac::construct(parallel_graph_access &split_graph) { |
| 16 | assert(assert_adjacency_lists_sorted()); |
| 17 | MPI_Barrier(m_comm); |
| 18 | internal_construct(split_graph); |
| 19 | MPI_Barrier(m_comm); |
| 20 | assert(assert_sanity_checks(split_graph)); |
| 21 | } |
| 22 | |
| 23 | void dspac::internal_construct(parallel_graph_access &split_graph) { |
| 24 | int size, rank; |