1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-15 02:05:37 +00:00

Fixing zmobius coeffs again

This commit is contained in:
Chulwoo Jung 2017-03-27 21:57:07 -04:00
parent 33d59c8869
commit 6aa106d906

View File

@ -91,7 +91,7 @@ int main (int argc, char ** argv)
double imag = 0.; double imag = 0.;
if (i==0) imag=1.; if (i==0) imag=1.;
if (i==Ls-1) imag=-1.; if (i==Ls-1) imag=-1.;
std::complex<double> temp (0.25+0.01*i, imag*0.00); std::complex<double> temp (0.25+0.01*i, imag*0.01);
omegas.push_back(temp); omegas.push_back(temp);
} }
ZMobiusFermionR Ddwf(Umu, *FGrid, *FrbGrid, *UGrid, *UrbGrid, mass, M5, omegas,1.,0.); ZMobiusFermionR Ddwf(Umu, *FGrid, *FrbGrid, *UGrid, *UrbGrid, mass, M5, omegas,1.,0.);