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.
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=default_int),
private
::
data(r)
Source Code
recursive subroutine combine(arr,n,r,out_array,count)!! Generate all combinations of size r from array arr of size n!! Uses int64 for count to handle large numbers of combinations that overflow int32.integer(default_int),intent(in)::arr(:)integer(default_int),intent(in)::n,rinteger(default_int),intent(inout)::out_array(:,:)integer(int64),intent(inout)::countinteger(default_int)::data(r)call combine_util(arr,n,r,1,data,1,out_array,count)end subroutine combine