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.
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.
Source Code
FUNCTION fprime_left_end_Cmplx(del1,del2,fprime)COMPLEX(KIND=8),INTENT(IN)::del1,del2,fprimeCOMPLEX(KIND=8)::fprime_left_end_Cmplxfprime_r=fprime_left_end(REAL(del1),REAL(del2),REAL(fprime))fprime_i=fprime_left_end(AIMAG(del1),AIMAG(del2),AIMAG(fprime))fprime_left_end_Cmplx=CMPLX(fprime_r,fprime_i,KIND=8)END FUNCTION fprime_left_end_Cmplx