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
elemental pure subroutine cmyk_to_rgb(c,m,y,k,r,g,b)integer(ik),intent(in)::c,m,y,kinteger(ik),intent(out)::r,g,breal(rk)::cr,mg,ylcr=real(c,kind=rk)/100.0_rkmg=real(m,kind=rk)/100.0_rkyl=real(y,kind=rk)/100.0_rkr=nint(255.0_rk*(1.0_rk-cr)*(1.0_rk-real(k,kind=rk)/100.0_rk),kind=ik)g=nint(255.0_rk*(1.0_rk-mg)*(1.0_rk-real(k,kind=rk)/100.0_rk),kind=ik)b=nint(255.0_rk*(1.0_rk-yl)*(1.0_rk-real(k,kind=rk)/100.0_rk),kind=ik)end subroutine cmyk_to_rgb