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 set_start_stop_time(clock,hconfig,rc)result(start_stop_time)type(ESMF_Time)::start_stop_time(2)type(ESMF_Clock),intent(inout)::clocktype(ESMF_HConfig),intent(in)::hconfiginteger,intent(out),optional::rcinteger::statuslogical::has_start,has_stop,has_timespeccharacter(len=:),allocatable::time_stringtype(ESMF_HConfig)::time_hconfigtime_hconfig=ESMF_HConfigCreateAt(hconfig,keyString='time_spec',_RC)call ESMF_ClockGet(clock,startTime=start_stop_time(1),stopTime=start_stop_time(2),_RC)has_start=ESMF_HConfigIsDefined(time_hconfig,keyString='start',_RC)has_stop=ESMF_HConfigIsDefined(time_hconfig,keyString='stop',_RC)if(has_start)thentime_string=ESMF_HConfigAsString(time_hconfig,keyString='start',_RC)call ESMF_TimeSet(start_stop_time(1),timeString=time_string,_RC)end if if(has_stop)thentime_string=ESMF_HConfigAsString(time_hconfig,keyString='stop',_RC)call ESMF_TimeSet(start_stop_time(2),timeString=time_string,_RC)end if_RETURN(_SUCCESS)end function set_start_stop_time