Skip to content
Snippets Groups Projects
Commit d561eaa5 authored by Martin Beseda's avatar Martin Beseda
Browse files

FIX: Added missing spaces in DEBUG messages.

parent 25a59f23
No related branches found
No related tags found
No related merge requests found
......@@ -176,13 +176,13 @@ namespace lib4neuro {
} else {
COUT_INFO("Gradient Descent method converged after "
<< this->maximum_niters-iter_idx
<< "iterations."
<< " iterations."
<< std::endl);
#ifdef L4N_DEBUG
if(ofs && ofs->is_open()) {
*ofs << "Gradient Descent method converged after "
<< this->maximum_niters-iter_idx
<< "iterations."
<< " iterations."
<< std::endl;
}
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment