Skip to content

Commit

Permalink
fix: add missing space
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSeemaier committed May 7, 2024
1 parent b139e10 commit b1cd139
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kaminpar-shm/context_io.cc
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ void print(const RefinementContext &r_ctx, std::ostream &out) {
<< "%]\n";
out << " Number of seed nodes: " << r_ctx.kway_fm.num_seed_nodes << "\n";
out << " Locking strategies: seed nodes: "
<< (r_ctx.kway_fm.unlock_seed_nodes ? "unlock" : "lock") << ", locally moved nodes:"
<< (r_ctx.kway_fm.unlock_seed_nodes ? "unlock" : "lock") << ", locally moved nodes: "
<< (r_ctx.kway_fm.unlock_locally_moved_nodes ? "unlock" : "lock") << "\n";
out << " Gain cache: " << r_ctx.kway_fm.gain_cache_strategy << "\n";
if (r_ctx.kway_fm.gain_cache_strategy == GainCacheStrategy::HYBRID) {
Expand Down

0 comments on commit b1cd139

Please sign in to comment.