From 7f06c40107b3e3ea19b3ec3bda493c1a7f9e7110 Mon Sep 17 00:00:00 2001 From: ferben Date: Fri, 15 Nov 2019 13:26:24 +0000 Subject: [PATCH] _var -> var_ --- Hadrons/Modules/MDistil/LapEvec.hpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Hadrons/Modules/MDistil/LapEvec.hpp b/Hadrons/Modules/MDistil/LapEvec.hpp index acc42664..dfd49eaa 100644 --- a/Hadrons/Modules/MDistil/LapEvec.hpp +++ b/Hadrons/Modules/MDistil/LapEvec.hpp @@ -181,13 +181,13 @@ public: assert( nd <= in.Grid()->Nd() ); conformable( in, out ); out = ( ( Real ) ( 2 * nd ) ) * in; - Field _tmp(in.Grid()); + Field tmp_(in.Grid()); typedef typename GaugeField::vector_type vCoeff_t; for (int mu = 0 ; mu < nd ; mu++) { out -= U[mu] * Cshift( in, mu, 1); - _tmp = adj( U[mu] ) * in; - out -= Cshift(_tmp,mu,-1); + tmp_ = adj( U[mu] ) * in; + out -= Cshift(tmp_,mu,-1); } } @@ -202,13 +202,13 @@ public: template class Laplacian3DHerm : public LinearFunction { public: - OperatorFunction & _poly; - LinearOperatorBase &_Linop; + OperatorFunction & poly_; + LinearOperatorBase &Linop_; Laplacian3DHerm(OperatorFunction & poly,LinearOperatorBase& linop) - : _poly{poly}, _Linop{linop} {} + : poly_{poly}, Linop_{linop} {} void operator()(const Field& in, Field& out) { - _poly(_Linop,in,out); + poly_(Linop_,in,out); } };