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 norm_2(x)result(norm)real(real64),intent(in)::x(:)real(real64)::norm#ifdef _MKLnorm=dnrm2(int(size(x),int32),x,1)#elsenorm=norm2(x)#endifend function norm_2