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

Fixed single precision compatibility issues

This commit is contained in:
Lanny91
2017-02-07 13:59:29 +00:00
parent bdd2765461
commit 2b2fc6453f
4 changed files with 4 additions and 4 deletions

View File

@ -133,7 +133,7 @@ void TWall<FImpl>::execute(void)
LatticeCoordinate(coor, mu);
ph = ph + p[mu]*coor*((1./(env().getGrid()->_fdimensions[mu])));
}
ph = exp(-2*M_PI*i*ph);
ph = exp(-(Real)(2*M_PI)*i*ph);
sliceSum<SitePropagator>(ph*q, prop, Tp);
}