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.
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
module subroutine create_preconditioner_jacobi(N,A,M)implicit noneinteger(int32),intent(in)::Ntype(type_crs),intent(in)::Areal(real64),intent(inout)::M(:)integer(int32)::i,j!$omp parallel do private(i, j)do i=1,Ndo j=A%ptr(i),A%ptr(i+1)-1if(i==A%Ind(j))thenM(i)=1.0d0/A%Val(j)end if end do end do!$omp end parallel doend subroutine create_preconditioner_jacobi