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
integer(c_int)function beach_kernel_destroy(handle)bind(C,name='beach_kernel_destroy')result(status)type(c_ptr),value::handletype(field_kernel_handle),pointer::kernelif(.not.c_associated(handle))thenstatus=beach_kernel_invalid_handlereturn end if call c_f_pointer(handle,kernel)call destroy_state(kernel%state)call destroy_plan(kernel%plan)deallocate(kernel)status=beach_kernel_okend function beach_kernel_destroy