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
recursive function ESMF_InitCheckDeep(isInit)result(InitCheckDeep)!! !RETURN VALUE:integer::InitCheckDeep! !ARGUMENTS:! ESMF_INIT_TYPE,intent(in)::isInit! !DESCRIPTION:! This function takes a classes' isInit component (declared by! the initialization macros) and returns an error return code.!! The arguments are:! \begin{description}! ! \item [isInit]! Initialization macro defined type component.! \end{description}!!EOPI! base return code on isInit valueif(isInit.eq.ESMF_INIT_CREATED)thenInitCheckDeep=ESMF_SUCCESSelse if(isInit.eq.ESMF_INIT_DELETED)thenInitCheckDeep=ESMF_RC_OBJ_DELETEDelseInitCheckDeep=ESMF_RC_OBJ_NOT_CREATEDendif end function ESMF_InitCheckDeep