Nodes of different colours represent the following:
Solid arrows point from a submodule to the (sub)module which it is
descended from. Dashed arrows point from a module or program unit to
modules which it uses.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
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.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
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.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Source Code
subroutine sort_three_arrays_by_time(U,V,T,rc)use MAPL_SortModreal(ESMF_KIND_R8),intent(inout)::U(:),V(:),T(:)integer,optional,intent(out)::rcinteger::i,leninteger,allocatable::IA(:)integer(ESMF_KIND_I8),allocatable::IX(:)real(ESMF_KIND_R8),allocatable::X(:)_ASSERT(size(U)==size(V),'U,V different dimension')_ASSERT(size(U)==size(T),'U,T different dimension')len=size(T)allocate(IA(len),IX(len),X(len))do i=1,lenIX(i)=T(i)IA(i)=ienddo call MAPL_Sort(IX,IA)X=Udo i=1,lenU(i)=X(IA(i))enddoX=Vdo i=1,lenV(i)=X(IA(i))enddoX=Tdo i=1,lenT(i)=X(IA(i))enddo_RETURN(_SUCCESS)end subroutine sort_three_arrays_by_time