Skip to content

Commit

Permalink
refactor(shm-fm): remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSeemaier committed Mar 14, 2024
1 parent 374f0a4 commit d44ed91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kaminpar-shm/datastructures/delta_partitioned_graph.h
Original file line number Diff line number Diff line change
Expand Up @@ -149,17 +149,17 @@ class GenericDeltaPartitionedGraph : public GraphDelegate {
// Depending on the configuration, use a hash map to be memory efficient,
// otherwise store the block weight deltas in vector (i.e., O(P * k) memory).
std::conditional_t<
compact_block_weight_delta, // false
compact_block_weight_delta,
DynamicFlatMap<BlockID, BlockWeight>,
scalable_vector<BlockWeight>>
_block_weights_delta;

// If we need random access to the partition delta, use a hash map. Otherwise,
// we can just store the moves in a vector.
std::conditional_t<
allow_read_after_move, // true
allow_read_after_move,
DynamicFlatMap<NodeID, BlockID>,
std::vector<DeltaEntry>>
scalable_vector<DeltaEntry>>
_partition_delta;
};
} // namespace kaminpar::shm

0 comments on commit d44ed91

Please sign in to comment.