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 logical function is_valid_year(y)integer,intent(in)::y! Strict ISO8601 compliance does not allow years before 1583#ifdef STRICT_ISO8601integer,parameter::LB_YEAR=1582#elseinteger,parameter::LB_YEAR=-1#endifinteger,parameter::UB_YEAR=10000is_valid_year=is_between(LB_YEAR,UB_YEAR,y)end function is_valid_year