本文整理汇总了Python中pele.optimize.LBFGS._cython方法的典型用法代码示例。如果您正苦于以下问题:Python LBFGS._cython方法的具体用法?Python LBFGS._cython怎么用?Python LBFGS._cython使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pele.optimize.LBFGS
的用法示例。
在下文中一共展示了LBFGS._cython方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test
# 需要导入模块: from pele.optimize import LBFGS [as 别名]
# 或者: from pele.optimize.LBFGS import _cython [as 别名]
def test(self):
minimizer = LBFGS(self.x.copy(), self.pot, debug=True)
minimizer._cython = True
ret = minimizer.run()
m2 = LBFGS(self.x.copy(), self.pot, debug=True)
minimizer._cython = True
ret2 = m2.run()
print "cython", ret.nfev, ret2.nfev
self.assertEqual(ret.nfev, ret2.nfev)
self.assertAlmostEqual(ret.energy, ret2.energy, 5)