From 84369b6e65d88e340150da01a9b02baaf47e123e Mon Sep 17 00:00:00 2001 From: Svenja Mehringer Date: Wed, 8 Nov 2023 10:23:04 +0100 Subject: [PATCH] fix --- src/layout/execute.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layout/execute.cpp b/src/layout/execute.cpp index b82c87d1..7d90f796 100644 --- a/src/layout/execute.cpp +++ b/src/layout/execute.cpp @@ -120,7 +120,7 @@ int execute(chopper::configuration & config, std::vector const & fi << "union_estimation_in_seconds\t" << "rearrangement_in_seconds\n"; output_stream << compute_sketches_timer.in_seconds() << '\t'; - output_stream << dp_algorithm_timer.in_seconds() << '\n'; + output_stream << dp_algorithm_timer.in_seconds() << '\t'; output_stream << union_estimation_timer.in_seconds() << '\t'; output_stream << rearrangement_timer.in_seconds() << '\t'; }