Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jinluchang committed May 31, 2024
1 parent 824ae90 commit bae3970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qlat/qlat_scripts/v1/load_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ def get_gauge_link_lookup_p_mu(prop_cache, tag, p, mu):
mu = -mu - 1
xg_shift = q.Coordinate()
xg_shift[mu] = -1
idx = geo_pos_dict[(p_xg + xg_shift) % total_site]
idx = geo_pos_dict[((q.Coordinate(p_xg) + xg_shift) % total_site).to_tuple()]
cm[:] = gf[idx, mu].T.conj()
return cm

Expand Down

0 comments on commit bae3970

Please sign in to comment.