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.
Source Code
subroutine initialize_gmsh_msh1_element(element,stat,errmsg)type(gmsh_msh1_element_type),intent(inout)::elementinteger,intent(out)::statcharacter(len=*),intent(inout)::errmsgelement%elm_number=0element%elm_type=0element%reg_elem=0element%reg_phys=0if(allocated(element%node_number_list))then deallocate(&!element%node_number_list,&!stat=stat,&!errmsg=errmsg(:)&!)end if end subroutine initialize_gmsh_msh1_element