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 fcn_parallel_output_wrapper(me,x,f,istat)class(simulated_annealing_type),intent(inout)::mereal(wp),dimension(:),intent(out)::xreal(wp),intent(out)::finteger,intent(out)::istatselect type(me)type is(c_sa_wrapper_type)call me%c_fcn_parallel_output_ptr(me%iproblem,x,size(x),f,istat)end select end subroutine fcn_parallel_output_wrapper