1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-09 23:45:36 +00:00

bugfix: eo operator called in correct location

This commit is contained in:
James Richings 2022-05-16 00:28:28 +01:00
parent 0274f40686
commit 8939d5dc73

View File

@ -110,8 +110,8 @@ int main (int argc, char ** argv)
bench_wilson(src,result,Dw,volume,DaggerYes);
std::cout << "\t";
// EO
bench_wilson(src,result,Dw,volume,DaggerNo);
bench_wilson(src,result,Dw,volume,DaggerYes);
bench_wilson_eo(src,result,Dw,volume,DaggerNo);
bench_wilson_eo(src,result,Dw,volume,DaggerYes);
std::cout << std::endl;
}
}