From c75d03ff6fe60370096a79cdfd1be2f360b67e1a Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Sun, 3 Apr 2022 13:14:53 -0400 Subject: [PATCH] Fix line spacing. --- src/mlpack/methods/ann/ffn_impl.hpp | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/mlpack/methods/ann/ffn_impl.hpp b/src/mlpack/methods/ann/ffn_impl.hpp index 3192b1180d..bf3ee865f2 100644 --- a/src/mlpack/methods/ann/ffn_impl.hpp +++ b/src/mlpack/methods/ann/ffn_impl.hpp @@ -677,13 +677,11 @@ FFN< if (optimizer.MaxIterations() < samples && optimizer.MaxIterations() != 0) { - Log::Warn << "The optimizer's maximum number of iterations " - << "is less than the size of the dataset; the " - << "optimizer will not pass over the entire " - << "dataset. To fix this, modify the maximum " - << "number of iterations to be at least equal " - << "to the number of points of your dataset " - << "(" << samples << ")." << std::endl; + Log::Warn << "The optimizer's maximum number of iterations is less than the" + << " size of the dataset; the optimizer will not pass over the entire " + << "dataset. To fix this, modify the maximum number of iterations to be" + << " at least equal to the number of points of your dataset (" + << samples << ")." << std::endl; } }