Skip to content

Commit

Permalink
bugfix: symprec
Browse files Browse the repository at this point in the history
  • Loading branch information
samwaseda committed Jan 10, 2022
1 parent 40ddc60 commit bc2dcba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tds/metadynamics_1d.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def mesh(self):
def symmetry(self):
if self._symmetry is None:
x_random = np.random.random(3)
sym = self.structure_unary.get_symmetry()
sym = self.structure_unary.get_symmetry(symprec=self.input.symprec)
x_sym = self.structure_unary.get_wrapped_coordinates(
np.einsum('nij,j->ni', sym.rotations, x_random) + sym.translations
)
Expand Down

0 comments on commit bc2dcba

Please sign in to comment.