Skip to content

Commit

Permalink
Remove useless occsa_upshifted and occsb_uppshifted
Browse files Browse the repository at this point in the history
  • Loading branch information
NastaMauger committed Nov 10, 2024
1 parent 7434907 commit f973bbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyscf/tools/trexio.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,8 @@ def det_to_trexio(mcscf, norb, nelec, filename, backend='h5'):
det_list = []
for a, b, coeff in zip(occsa, occsb, ci_values):
det_tmp = []
det_tmp += trexio_det.to_determinant_list(occsa_upshifted, int64_num)
det_tmp += trexio_det.to_determinant_list(occsb_upshifted, int64_num)
det_tmp += trexio_det.to_determinant_list(occsa, int64_num)
det_tmp += trexio_det.to_determinant_list(occsb, int64_num)
det_list.append(det_tmp)

offset_file = 0
Expand Down

0 comments on commit f973bbd

Please sign in to comment.