1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-18 09:45:55 +01:00

Namespace

This commit is contained in:
paboyle 2018-01-14 22:09:42 +00:00
parent f4c06ed8c0
commit 1591d391b9

View File

@ -5,8 +5,7 @@
#ifndef STOUT_SMEAR_ #ifndef STOUT_SMEAR_
#define STOUT_SMEAR_ #define STOUT_SMEAR_
namespace Grid { NAMESPACE_BEGIN(Grid);
namespace QCD {
/*! @brief Stout smearing of link variable. */ /*! @brief Stout smearing of link variable. */
template <class Gimpl> template <class Gimpl>
@ -154,7 +153,7 @@ class Smear_Stout : public Smear<Gimpl> {
return cos(w) / (w * w) - sin(w) / (w * w * w); return cos(w) / (w * w) - sin(w) / (w * w * w);
} }
}; };
}
} NAMESPACE_END(Grid);
#endif #endif