From 21ca182c368ba2415d874c744b8def244c0b37dd Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Fri, 8 May 2020 09:18:24 -0400 Subject: [PATCH] Comments remove --- Grid/algorithms/LinearOperator.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/Grid/algorithms/LinearOperator.h b/Grid/algorithms/LinearOperator.h index 50600d2d..a7fa1a90 100644 --- a/Grid/algorithms/LinearOperator.h +++ b/Grid/algorithms/LinearOperator.h @@ -257,13 +257,11 @@ public: virtual RealD Mpc (const Field &in, Field &out) { Field tmp(in.Grid()); tmp.Checkerboard() = !in.Checkerboard(); - //std::cout <<"grid pointers: in._grid="<< in._grid << " out._grid=" << out._grid << " _Mat.Grid=" << _Mat.Grid() << " _Mat.RedBlackGrid=" << _Mat.RedBlackGrid() << std::endl; _Mat.Meooe(in,tmp); _Mat.MooeeInv(tmp,out); _Mat.Meooe(out,tmp); - //std::cout << "cb in " << in.Checkerboard() << " cb out " << out.Checkerboard() << std::endl; _Mat.Mooee(in,out); return axpy_norm(out,-1.0,tmp,out); }