1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-10 14:10:46 +01:00

Replaced an error in A2AUtils.h that was stopping the build with an assert()

This commit is contained in:
Michael Marshall 2019-03-02 00:36:53 +00:00
parent 00c3c6fc54
commit d56d8c923f

View File

@ -178,7 +178,9 @@ void A2Autils<FImpl>::NucleonFieldMom(Eigen::Tensor<ComplexD,6> &mat,
for(int i=0;i<oneBlock;i++){
auto v1 = one[i]._odata[ss];
auto pv1 = 0.5*(v1 + (double)parity*Gamma(Gamma::Algebra::GammaT)*v1);
assert(0 && "Sorry, Felix, the next line was stopping the build");
//auto pv1 = 0.5*(v1 + (double)parity*Gamma(Gamma::Algebra::GammaT)*v1);
auto pv1 = v1;
for(int j=0;j<twoBlock;j++){