mirror of
https://github.com/paboyle/Grid.git
synced 2025-06-12 12:17:05 +01:00
Cleaning up previous debug lines
This commit is contained in:
@ -234,17 +234,11 @@ namespace Grid {
|
||||
virtual RealD MpcDag (const Field &in, Field &out){
|
||||
Field tmp(in._grid);
|
||||
|
||||
std::cout << "norm in :" << norm2(in) << std::endl;
|
||||
_Mat.MeooeDag(in,tmp);
|
||||
std::cout << "norm tmp :" << norm2(tmp) << std::endl;
|
||||
_Mat.MooeeInvDag(tmp,out);
|
||||
std::cout << "norm out :" << norm2(out) << std::endl;
|
||||
_Mat.MeooeDag(out,tmp);
|
||||
std::cout << "norm tmp :" << norm2(tmp) << std::endl;
|
||||
|
||||
|
||||
_Mat.MooeeDag(in,out);
|
||||
std::cout << "norm out :" << norm2(out) << std::endl;
|
||||
return axpy_norm(out,-1.0,tmp,out);
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user