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 n_inputs_wrapper(me,n_inputs)class(simulated_annealing_type),intent(inout)::meinteger,intent(out)::n_inputsselect type(me)type is(c_sa_wrapper_type)call me%c_n_inputs_ptr(me%iproblem,n_inputs)end select end subroutine n_inputs_wrapper