Skip to content

Commit

Permalink
fixed full level hierarchy readin
Browse files Browse the repository at this point in the history
  • Loading branch information
konpklr committed Jun 29, 2024
1 parent 4a03f67 commit 225562b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mt-kahypar/partition/coarsening/multilevel_coarsener.h
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ class MultilevelCoarsener : public ICoarsener,
//if(chg.initialNumNodes() == current_hg.initialNumNodes()) std::cout << 1/0 << "\n";
std::vector<HypernodeWeight> tmp(chg.initialNumNodes(), 0);
for(HypernodeID hn : current_hg.nodes()){
if(current_hg.nodeWeight[hn].weights[1] == 0) std::cout << 1/0;
if(current_hg.nodeWeight(hn).weights[1] == 0) std::cout << 1/0;
}
for(int i = 0; i < cluster_ids.size(); i++){
//if(cluster_ids[i] != ctmp[i]) std::cout << 1/0 << "\n";
Expand Down

0 comments on commit 225562b

Please sign in to comment.