Skip to content

Commit

Permalink
Update src/kbe/lo.py
Browse files Browse the repository at this point in the history
take Minsik's suggestion

Co-authored-by: Minsik <[email protected]>
  • Loading branch information
mcocdawc and mscho527 authored Nov 22, 2024
1 parent 22712bd commit 8a79242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kbe/lo.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def localize(
numpy.dot, (Ciao_[k].conj().T, self.FOCK[k], Ciao_[k])
)
S_iao = reduce(numpy.dot, (Ciao_[k].conj().T, self.S[k], Ciao_[k]))
e_iao, _ = scipy.linalg.eigh(fock_iao, S_iao)
e_iao, _ = scipy.linalg.eigh(fock_iao, S_iao) # e_iao, v_iao
mo_energy_.append(e_iao)
iaomf = KMF(self.mol, kpts=self.kpts, mo_coeff=Ciao_, mo_energy=mo_energy_)

Expand Down

0 comments on commit 8a79242

Please sign in to comment.