Skip to content

Commit

Permalink
Merge branch 'master' into pip
Browse files Browse the repository at this point in the history
  • Loading branch information
obackhouse committed Jun 23, 2023
2 parents 8f11318 + d019ba7 commit 3e94283
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/test_GCCSD.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ class GCCSD_PySCF_Tests(unittest.TestCase):
@classmethod
def setUpClass(cls):
mol = gto.Mole()
mol.atom = "O 0 0 0.1173; H 0 0.7572 -0.4692; H 0 -0.7572 -0.4692"
mol.atom = "Li 0 0 0; H 0 0 1.64"
mol.basis = "sto3g"
mol.verbose = 0
mol.build()
Expand All @@ -210,13 +210,13 @@ def setUpClass(cls):
mf.conv_tol = 1e-12
mf.kernel()

ccsd_ref = cc.GCCSD(mf)
ccsd_ref = cc.GCCSD(mf.to_uhf().to_ghf())
ccsd_ref.conv_tol = 1e-12
ccsd_ref.kernel()
ccsd_ref.solve_lambda()

ccsd = GEBCC(
mf,
mf.to_uhf().to_ghf(),
ansatz="CCSD",
log=NullLogger(),
)
Expand Down Expand Up @@ -316,7 +316,7 @@ class GCCSD_Dump_Tests(GCCSD_PySCF_Tests):
@classmethod
def setUpClass(cls):
mol = gto.Mole()
mol.atom = "O 0 0 0.1173; H 0 0.7572 -0.4692; H 0 -0.7572 -0.4692"
mol.atom = "Li 0 0 0; H 0 0 1.64"
mol.basis = "sto3g"
mol.verbose = 0
mol.build()
Expand All @@ -325,13 +325,13 @@ def setUpClass(cls):
mf.conv_tol = 1e-12
mf.kernel()

ccsd_ref = cc.GCCSD(mf)
ccsd_ref = cc.GCCSD(mf.to_uhf().to_ghf())
ccsd_ref.conv_tol = 1e-12
ccsd_ref.kernel()
ccsd_ref.solve_lambda()

ccsd = GEBCC(
mf,
mf.to_uhf().to_ghf(),
ansatz="CCSD",
log=NullLogger(),
)
Expand Down

0 comments on commit 3e94283

Please sign in to comment.