| 24 | } |
| 25 | |
| 26 | void fast_construct_mapping::construct_initial_mapping_bottomup( PartitionConfig & config, graph_access & C, matrix & D, std::vector< NodeID > & perm_rank) { |
| 27 | m_tmp_num_nodes = C.number_of_nodes(); |
| 28 | construct_initial_mapping_bottomup_internal( config, C, D, 0, perm_rank); |
| 29 | } |
| 30 | |
| 31 | void fast_construct_mapping::construct_initial_mapping_bottomup_internal( PartitionConfig & config, graph_access & C, matrix & D, int idx, std::vector< NodeID > & perm_rank) { |
| 32 |
no test coverage detected