Skip to content

Commit

Permalink
Kellog's cornflakes
Browse files Browse the repository at this point in the history
  • Loading branch information
obackhouse committed Dec 9, 2024
1 parent 0152b79 commit ec93f53
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/test_GCC2.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def test_rdm2_f(self):
@pytest.mark.skipif(BACKEND != "numpy", reason="EOM is currently too slow with non-NumPy backends")
def test_eom_ip(self):
e1 = self.ccsd.ip_eom(nroots=5).kernel()
self.assertAlmostEqual(e1[0], 0.4334082808900563, 6)
self.assertAlmostEqual(e1[0], 0.4334082809484607, 6)

@pytest.mark.skipif(BACKEND != "numpy", reason="EOM is currently too slow with non-NumPy backends")
def test_eom_ea(self):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_GCCD.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def test_eom_ip(self):
@pytest.mark.skipif(BACKEND != "numpy", reason="EOM is currently too slow with non-NumPy backends")
def test_eom_ea(self):
e1 = self.ccd.ea_eom(nroots=5).kernel()
self.assertAlmostEqual(e1[0], 0.0008756747431478695, 6)
self.assertAlmostEqual(e1[0], 0.0008755466370392711, 6)

@pytest.mark.skipif(BACKEND != "numpy", reason="EOM is currently too slow with non-NumPy backends")
def test_eom_ee(self):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_UCCD.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def test_eom_ip(self):
@pytest.mark.skipif(BACKEND != "numpy", reason="EOM is currently too slow with non-NumPy backends")
def test_eom_ea(self):
e1 = self.ccd.ea_eom(nroots=5).kernel()
self.assertAlmostEqual(e1[0], 0.002154489320978545)
self.assertAlmostEqual(e1[0], 0.002154489294082394)


if __name__ == "__main__":
Expand Down

0 comments on commit ec93f53

Please sign in to comment.