1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-05 03:35:55 +01:00

Zmobius test was wrong! (only mobius) checking in again

This commit is contained in:
Chulwoo Jung 2017-03-16 23:04:28 -04:00
parent 0b61f75c9e
commit e9712bc7fb

View File

@ -81,10 +81,12 @@ int main(int argc, char** argv) {
RealD M5 = 1.8;
std::vector < std::complex<double> > omegas;
for(int i=0;i<Ls;i++){
std::complex<double> temp (0.25+0.00*i, 0.0+0.00*i);
omegas.push_back(temp);
double imag = 0.;
if (i==0) imag=1.;
if (i==Ls-1) imag=-1.;
std::complex<double> temp (0.25+0.01*i, imag*0.01);
omegas.push_back(temp);
}
// DomainWallFermionR Ddwf(Umu, *FGrid, *FrbGrid, *UGrid, *UrbGrid, mass, M5);
ZMobiusFermionR Ddwf(Umu, *FGrid, *FrbGrid, *UGrid, *UrbGrid, mass, M5, omegas,1.,0.);
LatticeFermion src_o(FrbGrid);