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_degree_impl(self,i)result(degree)implicit none class(type_crs_adjacency_element),intent(in)::selfinteger(int32),intent(in)::iinteger(int32)::degreeif(i<1.or.i>self%num_row)thendegree=0elsedegree=self%ptr(i+1)-self%ptr(i)end if end function get_degree_impl