mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-05-14 19:43:41 +02:00
Bug in Zq fixed which altered the momentum of propagators
This commit is contained in:
parent
fe766cb44e
commit
b5c9738d52
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ def _invert_propagator(prop):
|
|||
|
||||
def Zq(prop, fermion='Wilson'):
|
||||
_check_geometry()
|
||||
mom = prop.mom_in
|
||||
mom = np.copy(prop.mom_in)
|
||||
mom[3] /= T / L
|
||||
sin_mom = np.sin(2 * np.pi / L * mom)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue