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
function make_child_hconfig(hconfig,collection_name,rc)result(child_hconfig)type(ESMF_HConfig)::child_hconfigtype(ESMF_HConfig),intent(in)::hconfigcharacter(len=*),intent(in)::collection_nameinteger,optional,intent(out)::rcinteger::statustype(ESMF_HConfig)::collections_hconfigcollections_hconfig=get_subconfig(hconfig,'collections',_RC)child_hconfig=get_subconfig(collections_hconfig,collection_name,_RC)call ESMF_HConfigDestroy(collections_hconfig,_RC)call ESMF_HConfigAdd(child_hconfig,content=collection_name,addKeyString='collection_name',_RC)_RETURN(_SUCCESS)end function make_child_hconfig