Fix line spacing.

This commit is contained in:
Ryan Curtin
2022-04-03 13:14:53 -04:00
parent 8b2e57d32e
commit c75d03ff6f
+5 -7
View File
@@ -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;
}
}