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
impure subroutine export(this,file_name)class(format_lut),intent(inout)::thischaracter(*),intent(in)::file_nameinteger::nunit,iinteger,dimension(this%dim_colors)::bufferinteger::iostatopen(newunit=nunit,file=file_name//'.lut',status='replace',action='write',iostat=iostat)if(iostat/=0)error stop'Error opening the file.'do i=1,this%get_num_colors()buffer=this%colors(i,:)write(nunit,'(*(I3,1x))')bufferend do close(nunit)end subroutine export