Skip to content

Commit

Permalink
Improve df auxbasis output messages
Browse files Browse the repository at this point in the history
  • Loading branch information
sunqm committed Sep 9, 2024
1 parent c68aaf9 commit fc57cbe
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pyscf/df/addons.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ def aug_etb_for_dfbasis(mol, dfbasis=DFBASIS, beta=ETB_BETA,
etb = _aug_etb_element(nuc_charge, basis, beta)
if etb:
newbasis[symb] = gto.expand_etbs(etb)
for l, n, emin, beta in etb:
logger.info(mol, 'l = %d, exps = %s * %g^n for n = 0..%d',
l, emin, beta, n-1)
else:
raise RuntimeError(f'Failed to generate even-tempered auxbasis for {symb}')

Expand Down

0 comments on commit fc57cbe

Please sign in to comment.