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 hconfig_to_esmf_timeinterval(hconfig,key,unusable,rc)result(time_interval)type(ESMF_TimeInterval)::time_intervaltype(ESMF_HConfig),intent(in)::hconfigcharacter(len=*),intent(in)::keyclass(KeywordEnforcer),optional,intent(in)::unusableinteger,optional,intent(out)::rcinteger::statuscharacter(len=:),allocatable::iso_duration_UNUSED_DUMMY(unusable)iso_duration=ESMF_HConfigAsString(hconfig,keystring=key,_RC)time_interval=string_to_esmf_timeinterval(iso_duration,_RC)_RETURN(_SUCCESS)end function hconfig_to_esmf_timeinterval