From ff5e2e0f471dc844ec003418c6dff4af8f46066d Mon Sep 17 00:00:00 2001 From: Michael Marshall <43034299+mmphys@users.noreply.github.com> Date: Fri, 26 Apr 2019 12:30:41 +0100 Subject: [PATCH] Debug output fix. Meant to print the rho matrix for stout smearing ... not the address of the function that creates it --- Grid/qcd/smearing/StoutSmearing.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Grid/qcd/smearing/StoutSmearing.h b/Grid/qcd/smearing/StoutSmearing.h index 0a5a4185..af88e5d3 100644 --- a/Grid/qcd/smearing/StoutSmearing.h +++ b/Grid/qcd/smearing/StoutSmearing.h @@ -77,7 +77,7 @@ public: Smear_Stout(double rho, int orthogdim = -1) //: OwnedBase{(orthogdim<0 || orthogdim>=Nd) ? new Smear_APE(rho) : new Smear_APE(rho3D(rho,orthogdim))}, : SmearRho{ rho3D(rho,orthogdim) }, OwnedBase{ new Smear_APE(SmearRho) }, SmearBase{OwnedBase.get()} { - std::cout << GridLogDebug << "Stout smearing constructor : Smear_StoutSmear_Stout(double rho, int orthogdim = -1)\nrho3d=" << rho3D << std::endl; + std::cout << GridLogDebug << "Stout smearing constructor : Smear_StoutSmear_Stout(double rho, int orthogdim = -1)\nrho3d=" << SmearRho << std::endl; assert(Nc == 3 && "Stout smearing currently implemented only for Nc==3"); }