Skip to content

Commit b88001f

Browse files
committed
Replace pause statement to write message
1 parent 05087f7 commit b88001f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Fortran_libraries/SOLVER_src/direct_solver/m_ludcmp_band.f90

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ subroutine ludcmp_band(n, nband, band_a, band_lu ,indx, d)
115115
aamax = max(aamax, abs(band_a(k,j)))
116116
! aamax = max(aamax, abs(a(i,j)))
117117
end do
118-
if (aamax.eq.0.0d0) pause 'singular matrix in ludcmp_band'
118+
if (aamax.eq.0.0d0) write(*,*) &
119+
& '!!!!!! singular matrix in ludcmp !!!!!!'
119120
vv(i)=1.0d0 / aamax
120121
idx_org(i) = i
121122
end do

0 commit comments

Comments
 (0)