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