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_vhc_ptr(self,region_id)result(vhc_ptr)implicit none class(type_material_manager),intent(in),target::selfinteger(int32),intent(in)::region_idclass(abst_vhc),pointer::vhc_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_vhc_ptr:",region_idnullify(vhc_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_vhc_ptr:",region_idnullify(vhc_ptr)stop 1end if#endifvhc_ptr=>self%vhc(model_index)%pend function get_vhc_ptr