Line data Source code
1 : !--------------------------------------------------------------------------------------------------!
2 : ! CP2K: A general program to perform molecular dynamics simulations !
3 : ! Copyright 2000-2026 CP2K developers group <https://cp2k.org> !
4 : ! !
5 : ! SPDX-License-Identifier: GPL-2.0-or-later !
6 : !--------------------------------------------------------------------------------------------------!
7 :
8 : ! **************************************************************************************************
9 : !> \brief represent a simple array based list of the given type
10 : !> \par History
11 : !> 08.2003 created [fawzi]
12 : !> 01.2017 ported to Fypp [Ole Schuett]
13 : !> \author Fawzi Mohamed
14 : ! **************************************************************************************************
15 : MODULE molecule_kind_list_types
16 : use molecule_kind_types, only: molecule_kind_type, deallocate_molecule_kind_set
17 :
18 : #include "../base/base_uses.f90"
19 :
20 : IMPLICIT NONE
21 : PRIVATE
22 :
23 : #:include "subsys_list.fypp"
24 :
25 52595 : $:subsys_list_macro(name='molecule_kind')
26 :
27 0 : END MODULE molecule_kind_list_types
|