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 MAPLpy_ESMF_TimeIntervalGet(time_state_c_ptr)result(result)bind(c,name="MAPLpy_ESMF_TimeIntervalGet")! Read in STATEtype(c_ptr),intent(in),value::time_state_c_ptrtype(ESMF_TimeInterval),pointer::state! Resultsreal(c_double)::result! Turn the ESMF State C pointer to a Fortran pointercall c_f_pointer(time_state_c_ptr,state)call ESMF_TimeIntervalGet(state,S_R8=result)end function MAPLpy_ESMF_TimeIntervalGet