-
入力
real z(nmax)
open( unit, file='***.dr', access='direct',recl=nmax*4)
nrec = 0
do 10 i = 1, xx
nrec = nrec+1
read( unit, rec=nrec ) z
10 enddo
出力
real z(nmax)
open( unit, file='***.dr', access='direct',recl=nmax*4)
do 10 i = 1, xx
write( unit, rec=nrec ) z
10 enddo
jwe0173i-w line 47 Invalid decimal character > was detected (unit=11).
(the relative position causing an error in a record = 0 )
>29 1 -88.75 243.75 0.16 60.00 0.16 60.00
?
|
-
この答えが配列の大きさ以上の所にアクセスしていたこと。不思議。
lib-4211 : UNRECOVERABLE library error
Encountered during a sequential formatted WRITE to an internal file
(character variable)
|
-
内部ファイルの大きさ(文字数)とフォーマット文で指定した大きさを一致させる。
lib-4016 : UNRECOVERABLE library error
Encountered during a direct access unformatted READ from unit 10
Fortran unit 10 is connected to a direct unformatted unblocked file: "./GR3av"
IOT Trap Abort (core dumped)
|
-
- open文で、readファイルなのに、status='replace'となっていた場合
jwe0019i-u The program was terminated abnormally with signal number
SIGSEGV.
error occurs at MAIN__ line 64 loc 08048e57 offset 00000457
MAIN__ at loc 08048a00 called from o.s.
error summary (Fortran)
error number error level error count
jwe0019i u 1
total error count = 1
|
-
- open文で、readファイルなのに、status='replace'となっていた場合
jwe0019i-u The program was terminated abnormally with signal number SIGSEGV.
error occurs at spectral1d_ line 245 loc 08049afd offset 0000025d
spectral1d_ at loc 080498a0 called from loc 08048b5f in
MAIN__ line 55
MAIN__ at loc 08048ab0 called from o.s.
error summary (Fortran)
error number error level error count
jwe0019i u 1
|
-
jwd1131i-s "grffrq.f", line 103: DO構文,IF構文,またはCASE構文の入れ子が
正しくありません
|
-
- end [if,do,select] の綴りが間違っている等。
|