Coverage for /builds/kinetik161/ase/ase/cluster/__init__.py: 100.00%

8 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-12-10 11:04 +0000

1"""Module for creating clusters.""" 

2 

3from ase.cluster.cluster import Cluster 

4from ase.cluster.cubic import BodyCenteredCubic, FaceCenteredCubic, SimpleCubic 

5from ase.cluster.decahedron import Decahedron 

6from ase.cluster.hexagonal import Hexagonal, HexagonalClosedPacked 

7from ase.cluster.icosahedron import Icosahedron 

8from ase.cluster.octahedron import Octahedron 

9from ase.cluster.wulff import wulff_construction 

10 

11__all__ = ['Cluster', 'wulff_construction', 'SimpleCubic', 

12 'BodyCenteredCubic', 'FaceCenteredCubic', 'Octahedron', 

13 'Hexagonal', 'HexagonalClosedPacked', 'Icosahedron', 'Decahedron']