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 tick(nymd,nhms,ndt)integer,intent(inout)::nymdinteger,intent(inout)::nhmsinteger,intent(in)::ndtinteger::nsecif(ndt.ne.0)thennsec=compute_nsecf(nhms)+ndtif(nsec.gt.86400)then do while(nsec.gt.86400)nsec=nsec-86400nymd=compute_incymd(nymd,1)enddo endif if(nsec.eq.86400)thennsec=0nymd=compute_incymd(nymd,1)endif if(nsec.lt.00000)then do while(nsec.lt.0)nsec=86400+nsecnymd=compute_incymd(nymd,-1)enddo endifnhms=compute_nhmsf(nsec)endif end subroutine tick