Skip to content

Commit

Permalink
[KaMinPar] Fix missing refinement for small graphs that are never coa…
Browse files Browse the repository at this point in the history
…rsened
  • Loading branch information
DanielSeemaier committed Oct 13, 2023
1 parent da6dc76 commit 8da6ac0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kaminpar-shm/partitioning/deep/deep_multilevel.cc
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ PartitionedGraph DeepMultilevelPartitioner::partition() {
const Graph *c_graph = coarsen();
PartitionedGraph p_graph = initial_partition(c_graph);

bool refined = true;
bool refined = false;
p_graph = uncoarsen(std::move(p_graph), refined);
if (!refined) {
refine(p_graph);
Expand Down

0 comments on commit 8da6ac0

Please sign in to comment.