Coverage for hiphive/structure_generation/__init__.py: 100%

Shortcuts on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

3 statements  

1""" 

2This module enables the generation of structures with displacements 

3that can be used to generate reference forces. 

4""" 

5 

6from .rattle import (generate_mc_rattled_structures, 

7 generate_rattled_structures) 

8from .phonon import generate_phonon_rattled_structures 

9 

10__all__ = ['generate_mc_rattled_structures', 

11 'generate_rattled_structures', 

12 'generate_phonon_rattled_structures']