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
module subroutine initialize_type_ic_uniform(self,input,initial_target)implicit none class(type_ic_uniform),intent(inout)::selftype(type_input),intent(in)::inputcharacter(*),intent(in)::initial_targetselect case(trim(adjustl(initial_target)))case('thermal')self%type=input%conditions%initial_conditions%thermal%typeself%value=input%conditions%initial_conditions%thermal%value case('hydraulic')self%type=input%conditions%initial_conditions%hydraulic%typeself%value=input%conditions%initial_conditions%hydraulic%value case('porosity')self%type=input%conditions%initial_conditions%porosity%typeself%value=input%conditions%initial_conditions%porosity%value end select end subroutine initialize_type_ic_uniform