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
pure logical function bbox_inside_box(bb_min,bb_max,box_min,box_max,tol)real(dp),intent(in)::bb_min(3),bb_max(3),box_min(3),box_max(3),tolbbox_inside_box=all(bb_min>=(box_min-tol)).and.all(bb_max<=(box_max+tol))end function bbox_inside_box