Coverage for eminus/xc/__init__.py: 100.00%

2 statements  

« prev     ^ index     » next       coverage.py v7.6.4, created at 2024-11-01 11:47 +0000

1# SPDX-FileCopyrightText: 2021 The eminus developers 

2# SPDX-License-Identifier: Apache-2.0 

3"""Implementation of different exchange-correlation functionals.""" 

4 

5from .utils import ( 

6 ALIAS, 

7 get_exc, 

8 get_vxc, 

9 get_xc, 

10 get_xc_defaults, 

11 get_zeta, 

12 IMPLEMENTED, 

13 parse_functionals, 

14 parse_xc_type, 

15 XC_MAP, 

16) 

17 

18__all__ = [ 

19 "ALIAS", 

20 "IMPLEMENTED", 

21 "XC_MAP", 

22 "get_exc", 

23 "get_vxc", 

24 "get_xc", 

25 "get_xc_defaults", 

26 "get_zeta", 

27 "parse_functionals", 

28 "parse_xc_type", 

29]