mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-25 05:05:56 +01:00
fixed parameter
This commit is contained in:
parent
55c9c45d4b
commit
4333d97958
@ -53,7 +53,7 @@ class Smear_Stout : public Smear<Gimpl> {
|
|||||||
std::vector<double> rho3d(Nd*Nd);
|
std::vector<double> rho3d(Nd*Nd);
|
||||||
for (int mu=0; mu<Nd; mu++)
|
for (int mu=0; mu<Nd; mu++)
|
||||||
for (int nu=0; nu<Nd; nu++)
|
for (int nu=0; nu<Nd; nu++)
|
||||||
rho3d[mu + Nd * nu] = (mu == nu || mu == orthogdim || nu == orthogdim) ? 1.0 : rho;
|
rho3d[mu + Nd * nu] = (mu == nu || mu == orthogdim || nu == orthogdim) ? 0.0 : rho;
|
||||||
return rho3d;
|
return rho3d;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user