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.
FUNCTION poly_msk_rrv(x,coeffs,mask)REAL(SP),DIMENSION(:),INTENT(IN)::coeffs,xLOGICAL(LGT),DIMENSION(:),INTENT(IN)::maskREAL(SP),DIMENSION(size(x))::poly_msk_rrvpoly_msk_rrv=unpack(poly_rrv(pack(x,mask),coeffs),mask,0.0_sp)END FUNCTION poly_msk_rrv