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 point_inside_box_periodic2(p,box_min,box_max,tol,periodic_axes,require_half_open)real(dp),intent(in)::p(3),box_min(3),box_max(3),tolinteger(i32),intent(in)::periodic_axes(2)logical,intent(in)::require_half_openinteger(i32)::axislogical::is_periodicpoint_inside_box_periodic2=.true.do axis=1_i32,3_i32is_periodic=any(periodic_axes==axis)if(require_half_open.and.is_periodic)then if(p(axis)<box_min(axis)-tol.or.p(axis)>=box_max(axis)+tol)thenpoint_inside_box_periodic2=.false.return end if else if(p(axis)<box_min(axis)-tol.or.p(axis)>box_max(axis)+tol)thenpoint_inside_box_periodic2=.false.return end if end if end do end function point_inside_box_periodic2