Skip to content

Commit

Permalink
Update 02-ghf example according to issue pyscf#1970
Browse files Browse the repository at this point in the history
  • Loading branch information
sunqm committed Jan 31, 2024
1 parent 3030ced commit c71e96b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/scf/02-ghf.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
#
mf = scf.GHF(mol)
dm = mf.get_init_guess() + 0j
dm[0,:] += .1j
dm[:,0] -= .1j
dm[0,:] += .05j
dm[:,0] -= .05j
mf.kernel(dm0=dm)

0 comments on commit c71e96b

Please sign in to comment.