Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
SUBROUTINE scatter_max_r(dest,source,dest_index)REAL(SP),DIMENSION(:),INTENT(OUT)::destREAL(SP),DIMENSION(:),INTENT(IN)::sourceINTEGER(I4B),DIMENSION(:),INTENT(IN)::dest_indexINTEGER(I4B)::m,n,j,in=assert_eq2(size(source),size(dest_index),'scatter_max_r')m=size(dest)do j=1,ni=dest_index(j)if(i>0.and.i<=m)dest(i)=max(dest(i),source(j))end do END SUBROUTINE scatter_max_r