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.
Variables
Type
Visibility
Attributes
Name
Initial
integer,
private
::
hess_dim
Source Code
subroutine mbe_result_allocate_hessian(this,total_atoms)!! Allocate hessian array for total_atomsclass(mbe_result_t),intent(inout)::thisinteger,intent(in)::total_atomsinteger::hess_dimhess_dim=3*total_atomsif(allocated(this%hessian))deallocate(this%hessian)allocate(this%hessian(hess_dim,hess_dim))this%hessian=0.0_dpend subroutine mbe_result_allocate_hessian