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 Calculate_ICF_preconditioner(A,omega,alpha,fill_level)result(L)real(dp),dimension(:,:),intent(in)::Areal(dp),intent(in)::omega,alphareal(dp),dimension(size(A,1),size(A,2))::Linteger,optional,intent(in)::fill_levelinteger::NN=size(A,1)L=0.d0if(present(fill_level))then call Incomplete_Cholesky_decomposition(A,L,fill_level)else call Incomplete_Cholesky_decomposition(A,L)end ifL=alpha/omega*Lend function Calculate_ICF_preconditioner