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_gcc_ptr(self,region_id)result(gcc_ptr)implicit none class(type_material_manager),intent(in),target::selfinteger(int32),intent(in)::region_idclass(abst_gcc),pointer::gcc_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_gcc_ptr:",region_idnullify(gcc_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_gcc_ptr:",region_idnullify(gcc_ptr)stop 1end if#endifgcc_ptr=>self%gcc(model_index)%pend function get_gcc_ptr