1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-10 07:55:35 +00:00

Consistent variable name in macro

This commit is contained in:
Lanny91 2017-02-01 12:56:55 +00:00
parent 97053adcb5
commit fa237401ff

View File

@ -56,7 +56,7 @@ for (unsigned int t = 0; t < buf.size(); ++t)\
//// Contraction of mu index: use 'mu' variable in exp. //// Contraction of mu index: use 'mu' variable in exp.
#define SUM_MU(buf,exp)\ #define SUM_MU(buf,exp)\
buf = zero;\ buf = zero;\
for (unsigned int mu = 0; mu < Nd; ++mu)\ for (unsigned int mu = 0; mu < ndim; ++mu)\
{\ {\
buf += exp;\ buf += exp;\
} }