Skip to content

Commit

Permalink
allow change thresh in get_uno
Browse files Browse the repository at this point in the history
  • Loading branch information
hebrewsnabla committed Feb 24, 2022
1 parent 75c078c commit 50b015b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions automr/autocas.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def do_suhf(mf):
return mf, no, noon, nacto, (nacta, nactb), ndb, nex


def get_uno(mf, st='st2', uks=False):
def get_uno(mf, st='st2', uks=False, thresh=1.98):
mol = mf.mol
mo = mf.mo_coeff
S = mol.intor_symmetric('int1e_ovlp')
Expand All @@ -57,7 +57,7 @@ def get_uno(mf, st='st2', uks=False):
elif st=='st2':
dm = mf.make_rdm1()
unos, noon = get_uno_st2(dm[0] + dm[1], S)
nacto, ndb, nex = check_uno(noon)
nacto, ndb, nex = check_uno(noon, thresh)
print('UNO ON:', noon)
#ndb, nocc, nopen = idx
#nacto = nocc - ndb
Expand All @@ -69,6 +69,7 @@ def get_uno(mf, st='st2', uks=False):
else:
mf = mf.to_rhf()
mf.mo_coeff = unos
#mf.mo_occ = noon
print('UNO in active space')
dump_mat.dump_mo(mol, unos[:,ndb:ndb+nacto], ncol=10)
return mf, unos, noon, nacto, (nacta, nactb), ndb, nex
Expand Down

0 comments on commit 50b015b

Please sign in to comment.