Skip to content

Commit

Permalink
fixed a bug in soscf/newton_ah.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sunqm committed Oct 16, 2023
1 parent c3aa173 commit 501ed17
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyscf/soscf/newton_ah.py
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,8 @@ def build(self, mol=None):
def reset(self, mol=None):
if mol is not None:
self.mol = mol
return self._scf.reset(mol)
self._scf.reset(mol)
return self

def kernel(self, mo_coeff=None, mo_occ=None, dm0=None):
cput0 = (logger.process_clock(), logger.perf_counter())
Expand Down

0 comments on commit 501ed17

Please sign in to comment.