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.
subroutine linsolve_quick(n,a,nrhs,b,x)! Quick wrapper around linsolveinteger,intent(in)::n,nrhsreal(wp),intent(in),dimension(n,n)::areal(wp),intent(in),dimension(n,nrhs)::breal(wp),intent(out),dimension(n,nrhs)::xinteger,dimension(n)::Preal(wp),dimension(n,n)::LUcall linsolve(n,a,nrhs,b,x,LU,P,.False.)return end subroutine linsolve_quick