From bb6aef8e71d70f8e00f8e3a90b84f15b64473482 Mon Sep 17 00:00:00 2001 From: Tobias Kempf Date: Tue, 14 Jan 2025 01:47:03 +0100 Subject: [PATCH] Remove debug prints --- mt-kahypar/dynamic/strategies/localFM.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/mt-kahypar/dynamic/strategies/localFM.h b/mt-kahypar/dynamic/strategies/localFM.h index 8454731e4..f37a997b0 100644 --- a/mt-kahypar/dynamic/strategies/localFM.h +++ b/mt-kahypar/dynamic/strategies/localFM.h @@ -76,7 +76,6 @@ namespace mt_kahypar::dyn { } if (context.dynamic.custom_output_file == "_non-incremental-gain") { - std::cout << "Non-incremental gain" << std::endl; GainCachePtr::resetGainCache(_gain_cache); _fm->initialize(partitioned_hypergraph); } @@ -84,8 +83,6 @@ namespace mt_kahypar::dyn { Metrics best_Metrics = {mt_kahypar::metrics::quality(*partitioned_hypergraph_s, Objective::km1), mt_kahypar::metrics::imbalance(*partitioned_hypergraph_s, context)}; - std::cout << std::endl << "Node count: " << local_fm_nodes.size() << std::endl; - _fm->refine(partitioned_hypergraph, local_fm_nodes, best_Metrics, std::numeric_limits::max()); }