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_neighbor_list(self,node_id)result(id_list)class(type_map_node_to_element),intent(inout),target::selfinteger(int32),intent(in)::node_idinteger(int32),pointer::id_list(:)nullify(id_list)if(node_id<1.or.node_id>size(self%map_data))return if(allocated(self%map_data(node_id)%ids))thenid_list=>self%map_data(node_id)%idsend if end function get_neighbor_list