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.
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
::
ishell
Source Code
pure subroutine copy_atomic_basis(source,dest)!! Deep copy of atomic basis data from source to desttype(atomic_basis_type),intent(in)::sourcetype(atomic_basis_type),intent(out)::destinteger::ishelldest%element=source%elementcall dest%allocate_shells(source%nshells)do ishell=1,source%nshellsdest%shells(ishell)%ang_mom=source%shells(ishell)%ang_momcall dest%shells(ishell)%allocate_arrays(source%shells(ishell)%nfunc)dest%shells(ishell)%exponents=source%shells(ishell)%exponentsdest%shells(ishell)%coefficients=source%shells(ishell)%coefficientsend do end subroutine copy_atomic_basis