Email from Edward Smyth from NAG. (Thanks Ed!)
authorlangou <langou@users.noreply.github.com>
Tue, 26 Jan 2016 18:29:16 +0000 (18:29 +0000)
committerlangou <langou@users.noreply.github.com>
Tue, 26 Jan 2016 18:29:16 +0000 (18:29 +0000)
commit5f9dd6e3f5fc477d420dba82be1227b46856ecab
tree8d02e9cf1ca661ff7d2cd23d3626972ecaeaaa28
parent884d8884ddf42c6dc27c24e0b35d03b91fd5e63d
Email from Edward Smyth from NAG. (Thanks Ed!)

In calls to {D,S}BDSVDX in the test programs {d,s}chkbd.f, insufficient space
may be provided for the array Z i.e. WORK(IWBZ). The correction is to change

 IWWORK = IWBZ + MNMIN*(MNMIN*2+1)

to

 IWWORK = IWBZ + 2*MNMIN*(MNMIN+1)

on line 1146 in both files.
TESTING/EIG/dchkbd.f
TESTING/EIG/schkbd.f