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.
Variables
Type
Visibility
Attributes
Name
Initial
integer(kind=int32),
private
::
i
integer(kind=int32),
private
::
j
integer(kind=int32),
private
::
n
real(kind=sp),
private
::
rand_val
integer(kind=int32),
private
::
temp
Source Code
subroutine scramble_array_int64(array)integer(int64),intent(inout)::array(:)integer(int32)::i,j,ninteger(int32)::tempreal(sp)::rand_valn=size(array)do i=n,2,-1call random_number(rand_val)j=int(rand_val*i)+1temp=array(i)array(i)=array(j)array(j)=tempend do end subroutine scramble_array_int64