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.
Source Code
subroutine sim_print(me)type(simulation_t),intent(in)::mecharacter(19)::schemescheme='Implicit new dt = 'if(me%explicit)scheme='Explicit new dt = 'if(me%rejected)scheme='Rejected new dt = 'print*,scheme,s_to_str(me%dt),' t = ',s_to_str(me%t),' no. = ',to_str(me%step)end subroutine sim_print