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.
FUNCTION random_norm(mean,sigma)REAL(rp),INTENT(IN)::meanREAL(rp),INTENT(IN)::sigmaREAL(rp)::random_normREAL(rp)::rand1,rand2call RANDOM_NUMBER(rand1)call RANDOM_NUMBER(rand2)random_norm=mean+sigma*SQRT(-2.0_rp*LOG(rand1))*COS(2.0_rp*C_PI*rand2)END FUNCTION random_norm