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_InitCheckShallow(isInit)result(InitCheckShallow)!! !RETURN VALUE:integer::InitCheckShallow! !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_DEFINED)thenInitCheckShallow=ESMF_SUCCESSelseInitCheckShallow=ESMF_RC_OBJ_INITendif end function ESMF_InitCheckShallow