Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Simkern committed Dec 22, 2024
1 parent d4a742b commit 9753b00
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/NewtonKrylov.f90
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ subroutine newton_rsp(sys, X, solver, info, rtol, atol, options, linear_solver_o

! Check for lucky convergence.
if (rnorm < target_tol) then
write(msg,'(2(A,E9.2))') 'nrorm= ', rnorm, ', target= ', target_tol
write(msg,'(2(A,E9.2))') 'rnorm= ', rnorm, ', target= ', target_tol
call logger%log_warning(msg, module=this_module, procedure='newton_rsp')
write(msg,'(A)') 'Initial guess is a fixed point to tolerance!'
call logger%log_warning(msg, module=this_module, procedure='newton_rsp')
Expand Down Expand Up @@ -354,7 +354,7 @@ subroutine newton_rdp(sys, X, solver, info, rtol, atol, options, linear_solver_o

! Check for lucky convergence.
if (rnorm < target_tol) then
write(msg,'(2(A,E9.2))') 'nrorm= ', rnorm, ', target= ', target_tol
write(msg,'(2(A,E9.2))') 'rnorm= ', rnorm, ', target= ', target_tol
call logger%log_warning(msg, module=this_module, procedure='newton_rdp')
write(msg,'(A)') 'Initial guess is a fixed point to tolerance!'
call logger%log_warning(msg, module=this_module, procedure='newton_rdp')
Expand Down Expand Up @@ -519,7 +519,7 @@ subroutine newton_csp(sys, X, solver, info, rtol, atol, options, linear_solver_o

! Check for lucky convergence.
if (rnorm < target_tol) then
write(msg,'(2(A,E9.2))') 'nrorm= ', rnorm, ', target= ', target_tol
write(msg,'(2(A,E9.2))') 'rnorm= ', rnorm, ', target= ', target_tol
call logger%log_warning(msg, module=this_module, procedure='newton_csp')
write(msg,'(A)') 'Initial guess is a fixed point to tolerance!'
call logger%log_warning(msg, module=this_module, procedure='newton_csp')
Expand Down Expand Up @@ -684,7 +684,7 @@ subroutine newton_cdp(sys, X, solver, info, rtol, atol, options, linear_solver_o

! Check for lucky convergence.
if (rnorm < target_tol) then
write(msg,'(2(A,E9.2))') 'nrorm= ', rnorm, ', target= ', target_tol
write(msg,'(2(A,E9.2))') 'rnorm= ', rnorm, ', target= ', target_tol
call logger%log_warning(msg, module=this_module, procedure='newton_cdp')
write(msg,'(A)') 'Initial guess is a fixed point to tolerance!'
call logger%log_warning(msg, module=this_module, procedure='newton_cdp')
Expand Down
2 changes: 1 addition & 1 deletion src/NewtonKrylov.fypp
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ contains

! Check for lucky convergence.
if (rnorm < target_tol) then
write(msg,'(2(A,E9.2))') 'nrorm= ', rnorm, ', target= ', target_tol
write(msg,'(2(A,E9.2))') 'rnorm= ', rnorm, ', target= ', target_tol
call logger%log_warning(msg, module=this_module, procedure='newton_${type[0]}$${kind}$')
write(msg,'(A)') 'Initial guess is a fixed point to tolerance!'
call logger%log_warning(msg, module=this_module, procedure='newton_${type[0]}$${kind}$')
Expand Down

0 comments on commit 9753b00

Please sign in to comment.