Skip to content

Commit

Permalink
Merge pull request #385 from rcurtin/report-newline
Browse files Browse the repository at this point in the history
Add a newline after printing coordinates to `Report` callback
  • Loading branch information
rcurtin authored Nov 24, 2023
2 parents f73995b + 3160cba commit cbc90d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions include/ensmallen_bits/callbacks/report.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ class Report
TruncatePrint(initialCoordinates, outputMatrixSize);
output << std::endl << "Final coordinates: " << std::endl;
TruncatePrint(coordinates, outputMatrixSize);
output << std::endl;
}
else
{
Expand Down

0 comments on commit cbc90d8

Please sign in to comment.