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 get_wrf_ptr(self,region_id)result(wrf_ptr)implicit none class(type_material_manager),intent(in),target::selfinteger(int32),intent(in)::region_idclass(abst_wrf),pointer::wrf_ptrinteger(int32)::model_index#ifdef USE_DEBUGif(region_id<1.or.region_id>size(self%region_id_map))then print*,"Error: Invalid region_id in get_wrf_ptr:",region_idnullify(wrf_ptr)stop 1end if#endifmodel_index=self%region_id_map(region_id)#ifdef USE_DEBUGif(model_index==0)then print*,"Error: region_id not mapped in get_wrf_ptr:",region_idnullify(wrf_ptr)stop 1end if#endifwrf_ptr=>self%wrf(model_index)%pend function get_wrf_ptr