********>Bugfix 22:
Author: Dave Case
Date: 08/17/2004
Programs: anal
Description: The error message when there is insufficient Hollerith memory
prints out the wrong number for how much memory is needed.
Fix: apply the following patch to amber8/src/anal/locmem.f
------------------------------------------------------------------------------
*** locmem.f 2000/11/09 17:49:07 7.2
--- locmem.f 2004/08/17 16:25:08
***************
*** 100,106 ****
c
if (ihend .gt. MAXHOL) then
write(6,'(/,5x,a,i8,2x,a,i8)')
! + 'Hollerith memory requirement of:',l95,
+ 'exceeds MAXHOL of', MAXHOL
call mexit(6, 1)
endif
--- 100,106 ----
c
if (ihend .gt. MAXHOL) then
write(6,'(/,5x,a,i8,2x,a,i8)')
! + 'Hollerith memory requirement of:',ihend,
+ 'exceeds MAXHOL of', MAXHOL
call mexit(6, 1)
endif
------------------------------------------------------------------------------
Temporary workarounds: none.