1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-13 04:37:05 +01:00

Hiding internals

This commit is contained in:
paboyle
2018-01-26 23:09:03 +00:00
parent 912b50f6fa
commit 3f9654e397
6 changed files with 31 additions and 31 deletions

View File

@ -265,12 +265,12 @@ int main (int argc,char **argv )
std::cout << "Norm of Grid Asqtad multiply "<<Grid::norm2(res_grid)<<std::endl;
/*
std::cout << " site 0 of Uthin "<<uthin._odata[0] <<std::endl;
std::cout << " site 0 of Utriple"<<utriple._odata[0] <<std::endl;
std::cout << " site 0 of Ufat "<<ufat._odata[0] <<std::endl;
std::cout << " site 0 of Uthin "<<uthin[0] <<std::endl;
std::cout << " site 0 of Utriple"<<utriple[0] <<std::endl;
std::cout << " site 0 of Ufat "<<ufat[0] <<std::endl;
std::cout << " site 0 of Grid "<<res_grid._odata[0] <<std::endl;
std::cout << " site 0 of Chroma "<<res_chroma._odata[0] <<std::endl;
std::cout << " site 0 of Grid "<<res_grid[0] <<std::endl;
std::cout << " site 0 of Chroma "<<res_chroma[0] <<std::endl;
*/
res_chroma=res_chroma - res_grid;