Exemple #1
0
 def test_as_dict_and_from_dict(self):
     file_name = os.path.join(test_dir, 'HEADER')
     header = Header.from_file(file_name)
     struct = header.struct
     pot = Potential(struct, 'O')
     d=pot.as_dict()
     pot2 = Potential.from_dict(d)
     self.assertEqual(str(pot), str(pot2),
                      "Potential to and from dict does not match")
Exemple #2
0
 def test_as_dict_and_from_dict(self):
     file_name = os.path.join(test_dir, 'HEADER')
     header = Header.from_file(file_name)
     struct = header.struct
     pot = Potential(struct, 'O')
     d=pot.as_dict()
     pot2 = Potential.from_dict(d)
     self.assertEqual(str(pot), str(pot2),
                      "Potential to and from dict does not match")
Exemple #3
0
 def test_as_dict_and_from_dict(self):
     file_name = os.path.join(PymatgenTest.TEST_FILES_DIR, "HEADER")
     header = Header.from_file(file_name)
     struct = header.struct
     pot = Potential(struct, "O")
     d = pot.as_dict()
     pot2 = Potential.from_dict(d)
     self.assertEqual(str(pot), str(pot2),
                      "Potential to and from dict does not match")