Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
smehringer committed Nov 8, 2023
1 parent 8be63d8 commit 84369b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layout/execute.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ int execute(chopper::configuration & config, std::vector<std::string> 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';
}
Expand Down

0 comments on commit 84369b6

Please sign in to comment.