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.
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
pure function get_month_ends(y)result(month_ends)integer,intent(in)::yinteger,parameter::NUM_MONTHS=12integer,dimension(NUM_MONTHS)::month_ends! last day numbers of months for leap yearsinteger,dimension(NUM_MONTHS)::MONTH_END_LEAP! last day numbers of months for regular yearsinteger,dimension(NUM_MONTHS)::MONTH_ENDMONTH_END=[31,28,31,30,31,30,31,31,30,31,30,31]MONTH_END_LEAP=[31,29,31,30,31,30,31,31,30,31,30,31]if(is_leap_year(y))thenmonth_ends=MONTH_END_LEAPelsemonth_ends=MONTH_ENDendif end function get_month_ends