Skip to content

Commit

Permalink
Replace pause statement to write message
Browse files Browse the repository at this point in the history
  • Loading branch information
hiromatsui committed Oct 18, 2024
1 parent 05087f7 commit b88001f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ subroutine ludcmp_band(n, nband, band_a, band_lu ,indx, d)
aamax = max(aamax, abs(band_a(k,j)))
! aamax = max(aamax, abs(a(i,j)))
end do
if (aamax.eq.0.0d0) pause 'singular matrix in ludcmp_band'
if (aamax.eq.0.0d0) write(*,*) &
& '!!!!!! singular matrix in ludcmp !!!!!!'
vv(i)=1.0d0 / aamax
idx_org(i) = i
end do
Expand Down

0 comments on commit b88001f

Please sign in to comment.