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
subroutine MAPLPy_ESMF_MethodExecute(esmf_state_c_ptr,label_c_ptr,label_len)bind(c,name="MAPLPy_ESMF_MethodExecute")! Read in STATEtype(c_ptr),intent(in),value::esmf_state_c_ptrtype(ESMF_State),pointer::state! Read in nametype(c_ptr),intent(in),value::label_c_ptrinteger(c_int),intent(in),value::label_lencharacter(len=label_len,kind=c_char),pointer::label! Turn the C string into a Fortran stringcall c_f_pointer(label_c_ptr,label)! Turn the ESMF State C pointer to a Fortran pointercall c_f_pointer(esmf_state_c_ptr,state)call ESMF_MethodExecute(state,label=label,RC=STATUS)VERIFY_(STATUS)end subroutine MAPLPy_ESMF_MethodExecute