コード例 #1
0
 def test_raises(self):
     pot = _lj_cpp._ErrorPotential()
     with self.assertRaises(RuntimeError):
         modified_fire = ModifiedFireCPP(_xrand, pot)
         modified_fire.run()
コード例 #2
0
 def test_raises(self):
     pot = _lj_cpp._ErrorPotential()
     with self.assertRaises(RuntimeError):
         lbfgs = LBFGS_CPP(_xrand, pot)
         lbfgs.run()
コード例 #3
0
ファイル: test_lbfgs_cpp.py プロジェクト: dimaslave/pele
 def test_raises(self):
     pot = _lj_cpp._ErrorPotential()
     with self.assertRaises(RuntimeError):
         lbfgs = LBFGS_CPP(_xrand, pot)
         lbfgs.run()
コード例 #4
0
 def setUp(self):
     self.pot = _lj_cpp._ErrorPotential()
     self.x = np.random.uniform(-1, 1, [9])
コード例 #5
0
 def test_raises(self):
     pot = _lj_cpp._ErrorPotential()
     with self.assertRaises(RuntimeError):
         cgd = CGDescent(_xrand, pot)
         cgd.run()
コード例 #6
0
ファイル: test_lj_cpp.py プロジェクト: jaotta/pele
 def setUp(self):
     self.pot = _lj_cpp._ErrorPotential()
     self.x = np.random.uniform(-1, 1, [9])