Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Removed debugging write statement
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed May 27, 2021
1 parent e0244b0 commit cbf5201
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/util_solve_linear_system.f90
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function util_solve_linear_system_d(A,b,n,lerr) result(x)
lerr = any(fpe_flag)
if (lerr .or. (any(abs(qx) > huge(x))) .or. (any(abs(qx) < tiny(x)))) then
x = 0.0_DP
write(*,*) 'fpe in util_solve_linear_system'
!write(*,*) 'fpe in util_solve_linear_system'
else
x = real(qx, kind=DP)
end if
Expand Down

0 comments on commit cbf5201

Please sign in to comment.