Skip to content

Commit

Permalink
Fix log string
Browse files Browse the repository at this point in the history
  • Loading branch information
zfergus committed May 2, 2024
1 parent 97a92c5 commit deb95e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/polysolve/nonlinear/descent_strategies/Newton.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ namespace polysolve::nonlinear

if (std::isnan(residual) || residual > residual_tolerance * characteristic_length)
{
m_logger.debug("[{}] large (or nan) linear solve residual {}>{} (||∇f||={})",
m_logger.debug("[{}] large (or nan) linear solve residual {}>{} (‖∇f‖={})",
name(), residual, residual_tolerance * characteristic_length, grad.norm());

return false;
Expand Down

0 comments on commit deb95e4

Please sign in to comment.