2018-12-20 16:08:29 -05:00
|
|
|
subroutine update_msk40_hasharray(nhasharray)
|
2018-09-24 16:10:57 -04:00
|
|
|
|
|
|
|
use packjt77
|
2018-10-05 21:56:22 -04:00
|
|
|
character*37 hashmsg
|
2018-09-24 16:10:57 -04:00
|
|
|
integer nhasharray(MAXRECENT,MAXRECENT)
|
2016-12-30 21:05:51 -05:00
|
|
|
|
|
|
|
nhasharray=-1
|
2018-09-24 16:10:57 -04:00
|
|
|
do i=1,MAXRECENT
|
|
|
|
do j=i+1,MAXRECENT
|
2017-01-03 20:16:19 -05:00
|
|
|
if( recent_calls(i)(1:1) .ne. ' ' .and. recent_calls(j)(1:1) .ne. ' ' ) then
|
2017-01-01 11:34:20 -05:00
|
|
|
hashmsg=trim(recent_calls(i))//' '//trim(recent_calls(j))
|
|
|
|
call fmtmsg(hashmsg,iz)
|
2018-10-05 21:56:22 -04:00
|
|
|
call hash(hashmsg,37,ihash)
|
2017-01-01 11:34:20 -05:00
|
|
|
ihash=iand(ihash,4095)
|
|
|
|
nhasharray(i,j)=ihash
|
|
|
|
hashmsg=trim(recent_calls(j))//' '//trim(recent_calls(i))
|
|
|
|
call fmtmsg(hashmsg,iz)
|
2018-10-05 21:56:22 -04:00
|
|
|
call hash(hashmsg,37,ihash)
|
2017-01-01 11:34:20 -05:00
|
|
|
ihash=iand(ihash,4095)
|
|
|
|
nhasharray(j,i)=ihash
|
|
|
|
endif
|
2016-12-30 21:05:51 -05:00
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
|
2018-12-20 16:08:29 -05:00
|
|
|
end subroutine update_msk40_hasharray
|