diff --git a/HISTORY.md b/HISTORY.md index 5b06c112b..363e17030 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -6,6 +6,9 @@ * Fix return types of callbacks ([#382](https://github.com/mlpack/ensmallen/pull/382)). + * Minor cleanup for printing optimization reports via `Report()` + ([#385](https://github.com/mlpack/ensmallen/pull/385)). + ### ensmallen 2.20.0: "Stripped Bolt Head" ###### 2023-10-02 * Implementation of Active CMAES diff --git a/include/ensmallen_bits/callbacks/report.hpp b/include/ensmallen_bits/callbacks/report.hpp index ad58eb48a..1edf7b9d0 100644 --- a/include/ensmallen_bits/callbacks/report.hpp +++ b/include/ensmallen_bits/callbacks/report.hpp @@ -87,6 +87,7 @@ class Report TruncatePrint(initialCoordinates, outputMatrixSize); output << std::endl << "Final coordinates: " << std::endl; TruncatePrint(coordinates, outputMatrixSize); + output << std::endl; } else {