Skip to content

Commit

Permalink
fix to get tests passing in lin32. not a functional change, just tole…
Browse files Browse the repository at this point in the history
…rance values
  • Loading branch information
greglandrum committed Dec 9, 2014
1 parent 9354820 commit f1eafa2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/ForceField/Wrap/testConstraints.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def testUFFTorsionConstraints(self) :
ff = ChemicalForceFields.UFFGetMoleculeForceField(m)
self.assertTrue(ff)
ff.UFFAddTorsionConstraint(1, 3, 6, 8, False, -10.0, -8.0, 1.0e5)
r = ff.Minimize(500)
r = ff.Minimize(1000)
self.assertTrue(r == 0)
conf = m.GetConformer()
dihedral = rdMolTransforms.GetDihedralDeg(conf, 1, 3, 6, 8)
Expand Down Expand Up @@ -219,7 +219,7 @@ def testMMFFTorsionConstraints(self) :
ff = ChemicalForceFields.MMFFGetMoleculeForceField(m, mp)
self.assertTrue(ff)
ff.MMFFAddTorsionConstraint(1, 3, 6, 8, False, -10.0, -8.0, 1.0e5)
r = ff.Minimize(500)
r = ff.Minimize(1000)
self.assertTrue(r == 0)
conf = m.GetConformer()
dihedral = rdMolTransforms.GetDihedralDeg(conf, 1, 3, 6, 8)
Expand Down

0 comments on commit f1eafa2

Please sign in to comment.