Skip to content

Commit

Permalink
Check_resort: return RESORT_GLOBAL as default (#3617)
Browse files Browse the repository at this point in the history
Fixes #3616 

Description of changes:
- Return GLOBAL as a default.

(Edit: Sorry, wrong issue referenced.)
  • Loading branch information
kodiakhq[bot] authored Apr 1, 2020
2 parents 2a3c691 + 8ba537e commit 8813c4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/cells.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ unsigned topology_check_resort(int cs, unsigned local_resort) {
return boost::mpi::all_reduce(comm_cart, local_resort,
std::bit_or<unsigned>());
default:
return true;
return Cells::Resort::RESORT_GLOBAL;
}
}

Expand Down

0 comments on commit 8813c4c

Please sign in to comment.