From 23baa5014353f733e1b047e8940b4e5d80e207a9 Mon Sep 17 00:00:00 2001 From: konpklr Date: Sat, 29 Jun 2024 12:46:00 -0400 Subject: [PATCH] fixed full level hierarchy readin --- mt-kahypar/datastructures/static_graph.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/mt-kahypar/datastructures/static_graph.cpp b/mt-kahypar/datastructures/static_graph.cpp index 7b9559fc6..a67f007ac 100644 --- a/mt-kahypar/datastructures/static_graph.cpp +++ b/mt-kahypar/datastructures/static_graph.cpp @@ -47,6 +47,7 @@ namespace mt_kahypar::ds { * \param communities Community structure that should be contracted */ StaticGraph StaticGraph::contract(parallel::scalable_vector& communities, bool /*deterministic*/) { + std::cout << "contraction\n"; ASSERT(communities.size() == _num_nodes); if ( !_tmp_contraction_buffer ) {