Fixed special exit case.

psblas3-type-indexed
Salvatore Filippone 18 years ago
parent 45c74ea2d8
commit 7bac86e813

@ -46,8 +46,12 @@ subroutine imsru(n,x,idir,nout)
!!$ write(0,*) 'Error: IMSR: N<0'
return
endif
if (n<=1) return
if (n<=1) then
nout = n
return
endif
call imsr(n,x,idir)
nout = 1

Loading…
Cancel
Save