diff --git a/lib/qcd/action/fermion/WilsonCompressor.h b/lib/qcd/action/fermion/WilsonCompressor.h index b47700ac..07df2b75 100644 --- a/lib/qcd/action/fermion/WilsonCompressor.h +++ b/lib/qcd/action/fermion/WilsonCompressor.h @@ -1,4 +1,4 @@ - /************************************************************************************* +/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid @@ -25,13 +25,12 @@ Author: paboyle 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. See the full license in the file "LICENSE" in the top level distribution directory - *************************************************************************************/ - /* END LEGAL */ +*************************************************************************************/ +/* END LEGAL */ #ifndef GRID_QCD_WILSON_COMPRESSOR_H #define GRID_QCD_WILSON_COMPRESSOR_H -namespace Grid { -namespace QCD { +NAMESPACE_BEGIN(Grid); ///////////////////////////////////////////////////////////////////////////////////////////// // optimised versions supporting half precision too @@ -43,9 +42,9 @@ class WilsonCompressorTemplate; template class WilsonCompressorTemplate< _HCspinor, _Hspinor, _Spinor, projector, - typename std::enable_if::value>::type > + typename std::enable_if::value>::type > { - public: +public: int mu,dag; @@ -113,9 +112,9 @@ class WilsonCompressorTemplate< _HCspinor, _Hspinor, _Spinor, projector, template class WilsonCompressorTemplate< _HCspinor, _Hspinor, _Spinor, projector, - typename std::enable_if::value>::type > + typename std::enable_if::value>::type > { - public: +public: int mu,dag; @@ -197,12 +196,12 @@ class WilsonCompressorTemplate< _HCspinor, _Hspinor, _Spinor, projector, #define DECLARE_PROJ(Projector,Compressor,spProj) \ class Projector { \ public: \ - template \ - static void Proj(hsp &result,const fsp &in,int mu,int dag){ \ - spProj(result,in); \ - } \ + template \ + static void Proj(hsp &result,const fsp &in,int mu,int dag){ \ + spProj(result,in); \ + } \ }; \ -template using Compressor = WilsonCompressorTemplate; + template using Compressor = WilsonCompressorTemplate; DECLARE_PROJ(WilsonXpProjector,WilsonXpCompressor,spProjXp); DECLARE_PROJ(WilsonYpProjector,WilsonYpCompressor,spProjYp); @@ -214,7 +213,7 @@ DECLARE_PROJ(WilsonZmProjector,WilsonZmCompressor,spProjZm); DECLARE_PROJ(WilsonTmProjector,WilsonTmCompressor,spProjTm); class WilsonProjector { - public: +public: template static void Proj(hsp &result,const fsp &in,int mu,int dag){ int mudag=dag? mu : (mu+Nd)%(2*Nd); @@ -275,7 +274,7 @@ public: const std::vector &directions, const std::vector &distances) : CartesianStencil (grid,npoints,checkerboard,directions,distances) , - same_node(npoints) + same_node(npoints) { ZeroCountersi(); surface_list.resize(0); @@ -384,7 +383,7 @@ public: this->halogtime+=usecond(); } - }; +}; -}} // namespace close +NAMESPACE_END(Grid); #endif