From d44ed917957e9a36ec4682a62aa7b3b70bcbea14 Mon Sep 17 00:00:00 2001 From: Daniel Seemaier Date: Tue, 12 Mar 2024 11:20:28 +0100 Subject: [PATCH] refactor(shm-fm): remove comments --- kaminpar-shm/datastructures/delta_partitioned_graph.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kaminpar-shm/datastructures/delta_partitioned_graph.h b/kaminpar-shm/datastructures/delta_partitioned_graph.h index 0d31bd89..12c729de 100644 --- a/kaminpar-shm/datastructures/delta_partitioned_graph.h +++ b/kaminpar-shm/datastructures/delta_partitioned_graph.h @@ -149,7 +149,7 @@ 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, scalable_vector> _block_weights_delta; @@ -157,9 +157,9 @@ class GenericDeltaPartitionedGraph : public GraphDelegate { // 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, - std::vector> + scalable_vector> _partition_delta; }; } // namespace kaminpar::shm