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