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.
pure module function getArow1D(N,xi)result(row)integer,intent(in)::Nreal(wp),intent(in)::xireal(wp),dimension(N)::rowrow=pascal_row(N-1,xi)return end function getArow1D