1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-19 00:07:05 +01:00

bugfix in Baryonutils

This commit is contained in:
ferben
2019-07-18 14:44:55 +01:00
parent cded7670d0
commit 11a8668d19
2 changed files with 7 additions and 21 deletions

View File

@ -66,7 +66,7 @@ void BaryonUtils<FImpl>::ContractBaryons(const PropagatorField &q1,
auto gD1a = GammaA * GammaA * D1;
auto gD1b = GammaA * g4 * GammaA * D1;
auto pD1 = 0.5* (gD1a + (double)parity * dD1b);
auto pD1 = 0.5* (gD1a + (double)parity * gD1b);
auto gD3 = GammaB * D3;
vobj result=zero;