| 
									
										
										
										
											2016-12-31 02:05:51 +00:00
										 |  |  | subroutine update_hasharray(recent_calls,nrecent,nhasharray)
 | 
					
						
							|  |  |  |   
 | 
					
						
							|  |  |  |   character*12 recent_calls(nrecent)
 | 
					
						
							|  |  |  |   character*22 hashmsg
 | 
					
						
							|  |  |  |   integer nhasharray(nrecent,nrecent)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   nhasharray=-1
 | 
					
						
							|  |  |  |   do i=1,nrecent
 | 
					
						
							|  |  |  |     do j=i+1,nrecent
 | 
					
						
							| 
									
										
										
										
											2017-01-04 01:16:19 +00:00
										 |  |  |       if( recent_calls(i)(1:1) .ne. ' ' .and. recent_calls(j)(1:1) .ne. ' ' ) then
 | 
					
						
							| 
									
										
										
										
											2017-01-01 16:34:20 +00:00
										 |  |  |         hashmsg=trim(recent_calls(i))//' '//trim(recent_calls(j))
 | 
					
						
							|  |  |  |         call fmtmsg(hashmsg,iz)
 | 
					
						
							|  |  |  |         call hash(hashmsg,22,ihash)
 | 
					
						
							|  |  |  |         ihash=iand(ihash,4095)
 | 
					
						
							|  |  |  |         nhasharray(i,j)=ihash
 | 
					
						
							|  |  |  |         hashmsg=trim(recent_calls(j))//' '//trim(recent_calls(i))
 | 
					
						
							|  |  |  |         call fmtmsg(hashmsg,iz)
 | 
					
						
							|  |  |  |         call hash(hashmsg,22,ihash)
 | 
					
						
							|  |  |  |         ihash=iand(ihash,4095)
 | 
					
						
							|  |  |  |         nhasharray(j,i)=ihash
 | 
					
						
							|  |  |  |       endif
 | 
					
						
							| 
									
										
										
										
											2016-12-31 02:05:51 +00:00
										 |  |  |     enddo
 | 
					
						
							|  |  |  |   enddo 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | end subroutine update_hasharray
 |