Skip to content

Commit

Permalink
fix windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
N-Maas committed Sep 13, 2023
1 parent 4097024 commit 14ee858
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mt-kahypar/partition/refinement/fm/multitry_kway_fm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ namespace mt_kahypar {
// that is moved twice (e.g., 0 -> 2 -> 1 becomes 0 -> 1)
for (PartitionID part = 0; part < context.partition.k; ++part) {
vec<Move>& moves = rebalancing_moves_by_part[part];
tbb::parallel_for(0UL, moves.size(), [&](const size_t i) {
tbb::parallel_for(UL(0), moves.size(), [&](const size_t i) {
Move& r_move = moves[i];
if (r_move.isValid() && move_tracker.wasNodeMovedInThisRound(r_move.node)) {
ASSERT(r_move.to == phg.partID(r_move.node));
Expand Down

0 comments on commit 14ee858

Please sign in to comment.