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 calculate_time_coefficient(time,arr_time,time_coefficient,idx)implicit nonereal(real64),intent(in)::timereal(real64),intent(in)::arr_time(:)real(real64),intent(inout)::time_coefficientinteger(int32),intent(inout)::idxinteger(int32)::ido i=1,size(arr_time(:))-1if(arr_time(i)<time.and.time<=arr_time(i+1))thentime_coefficient=(time-arr_time(i))/(arr_time(i+1)-arr_time(i))idx=iexit end if end do if(i>size(arr_time)-1)thentime_coefficient=0.0d0idx=size(arr_time)-1end if end subroutine calculate_time_coefficient