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 ESMF_InitPrint(isInit,rc)! !ARGUMENTS:!ESMF_INIT_TYPE,intent(in)::isInitinteger,intent(out),optional::rc! !DESCRIPTION:!! Print the status of the isInit flag.!! The arguments are:! \begin{description}!! \item [isInit]! Initialization value to print.! \item [{[rc]}]! Return code!! \end{description}!!EOPI! Initialize return code; assume routine not imlementedif(present(rc))rc=ESMF_RC_NOT_IMPLselect case(isInit)case(ESMF_INIT_UNDEFINED)print*,'Object is UNDEFINED'case(ESMF_INIT_DEFINED)print*,'Object is DEFINED'case(ESMF_INIT_CREATED)print*,'Object has been CREATED'case(ESMF_INIT_DELETED)print*,'Object has been DELETED'case defaultprint*,'Object is in unknown state'end select if(present(rc))rc=ESMF_SUCCESSend subroutine ESMF_InitPrint