Skip to content

Commit

Permalink
Reduce Threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
T3C42 committed Jan 21, 2025
1 parent f23f3ad commit 4172aab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mt-kahypar/dynamic/strategies/localFM_small_blocks.h
Original file line number Diff line number Diff line change
Expand Up @@ -168,11 +168,11 @@ namespace mt_kahypar::dyn {
for (const HyperedgeID& he : hypergraph.incidentEdges(hn)) {

for (const HypernodeID& hn2 : hypergraph.pins(he)) {
if (partitioned_hypergraph_s->pinCountInPart(he, partitioned_hypergraph_s->partID(hn2)) <= 100) {
if (partitioned_hypergraph_s->pinCountInPart(he, partitioned_hypergraph_s->partID(hn2)) <= 5) {
local_fm_nodes.push_back(hn2);
}
}

//skip removed edges
bool skip = false;
for (const HyperedgeID &he2 : change.removed_edges) {
Expand Down

0 comments on commit 4172aab

Please sign in to comment.