Allocate array of atomic basis elements in a molecular basis set
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(molecular_basis_type), | intent(inout) | :: | self | |||
| integer, | intent(in) | :: | nelements |
pure subroutine basis_set_allocate_elements(self, nelements) !! Allocate array of atomic basis elements in a molecular basis set class(molecular_basis_type), intent(inout) :: self integer, intent(in) :: nelements self%nelements = nelements allocate (self%elements(nelements)) end subroutine basis_set_allocate_elements