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
subroutine type_crs_add(alpha,A,B,C)! C := alpha*A + B!! [ATTENTION] Assumes A, B, and C have the exact same sparsity pattern.!implicit nonereal(real64),intent(in)::alphatype(type_crs),intent(in)::Atype(type_crs),intent(in)::Btype(type_crs),intent(inout)::Cinteger(int32)::i!$omp parallel dodo i=1,A%nnzC%val(i)=alpha*A%val(i)+B%val(i)end do!$omp end parallel doend subroutine type_crs_add