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.
Source Code
function split_string(input_string,separator)result(output_string_vec)character(len=*),intent(in)::input_stringcharacter(len=1),intent(in)::separatortype(StringVector)::output_string_veccharacter(len=:),allocatable::tstringinteger::itstring=input_stringi=1do while(i/=0)i=index(tstring,separator)if(i>0)then call output_string_vec%push_back(tstring(1:i-1))tstring=tstring(i+1:)else call output_string_vec%push_back(trim(tstring))end if enddo end function split_string