Nodes of different colours represent the following:
Solid arrows point from a submodule to the (sub)module which it is
descended from. Dashed arrows point from a module or program unit to
modules which it uses.
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.
program tem_polygon_material_testuse tem_polygon_material_moduleimplicit nonelogical::angle_is_correctlogical::containment_is_correctcall tem_polygon_material_test_angle(angle_is_correct)if(.not.angle_is_correct)then write(*,*)'FAILED to compute angles correctly!'else write(*,*)'angles computed correctly'end if write(*,*)''write(*,*)'----------------------------------------'write(*,*)''call tem_polygon_material_test_value(containment_is_correct)if(.not.containment_is_correct)then write(*,*)'FAILED to compute containment correctly!'else write(*,*)'containment computed correctly'end if if(angle_is_correct.and.containment_is_correct)then write(*,*)'PASSED'end ifend program tem_polygon_material_test