From d95bf7e8761af5cb4d92c6a71f621a3e431867c0 Mon Sep 17 00:00:00 2001 From: Tobias Kempf Date: Mon, 2 Dec 2024 00:34:55 +0100 Subject: [PATCH] Print output file --- mt-kahypar/dynamic/dynamic_io.h | 1 + 1 file changed, 1 insertion(+) diff --git a/mt-kahypar/dynamic/dynamic_io.h b/mt-kahypar/dynamic/dynamic_io.h index 23f0abb83..cad75366b 100644 --- a/mt-kahypar/dynamic/dynamic_io.h +++ b/mt-kahypar/dynamic/dynamic_io.h @@ -20,6 +20,7 @@ namespace mt_kahypar::dyn { context.dynamic.output_path += ".csv"; // reset file std::ofstream file(context.dynamic.output_path); + std::cout << "Output file: " << context.dynamic.output_path << std::endl; } void print_progress_bar(size_t i, size_t total, const std::vector* history) {