1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 17:25:37 +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_
#define STOUT_SMEAR_
namespace Grid {
namespace QCD {
NAMESPACE_BEGIN(Grid);
/*! @brief Stout smearing of link variable. */
template <class Gimpl>
@ -154,7 +153,7 @@ class Smear_Stout : public Smear<Gimpl> {
return cos(w) / (w * w) - sin(w) / (w * w * w);
}
};
}
}
NAMESPACE_END(Grid);
#endif