Skip to content
Snippets Groups Projects
Commit d8ec0837 authored by Patrick Jaap's avatar Patrick Jaap
Browse files

Adapt stopping criterion message

parent 65055352
Branches
No related tags found
No related merge requests found
......@@ -276,7 +276,7 @@ namespace Dune::Solvers
if ( (1.0 + regWeight)*normCorrection < tolerance_ )
{
if ( printOutput )
std::cout << "ProximalNewtonSolver terminated because of correction is below tolerance: " << normCorrection << std::endl;
std::cout << "ProximalNewtonSolver terminated because of weighted correction is below tolerance: " << (1.0 + regWeight)*normCorrection << std::endl;
break;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment