1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-25 13:15:55 +01:00

Namespace

This commit is contained in:
paboyle 2018-01-14 22:36:59 +00:00
parent fde2e07bf4
commit cc349c6512

View File

@ -32,9 +32,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include <unordered_map> #include <unordered_map>
namespace Grid { NAMESPACE_BEGIN(Grid);
namespace QCD {
// very ugly here but possibly resolved if we had a base Reader class // very ugly here but possibly resolved if we had a base Reader class
template < class ReaderClass > template < class ReaderClass >
@ -44,7 +42,6 @@ public:
virtual void initialize(ReaderClass& ) = 0; virtual void initialize(ReaderClass& ) = 0;
}; };
template <class Implementation, template <class Implementation,
template <typename, typename, typename> class Integrator, template <typename, typename, typename> class Integrator,
class RepresentationsPolicy = NoHirep, class ReaderClass = XmlReader> class RepresentationsPolicy = NoHirep, class ReaderClass = XmlReader>
@ -213,7 +210,6 @@ typedef HMCWrapperTemplate<ScalarAdjImplR, MinimumNorm2, ScalarMatrixFields>
template <int Colours> template <int Colours>
using ScalarNxNAdjGenericHMCRunner = HMCWrapperTemplate < ScalarNxNAdjImplR<Colours>, MinimumNorm2, ScalarNxNMatrixFields<Colours> >; using ScalarNxNAdjGenericHMCRunner = HMCWrapperTemplate < ScalarNxNAdjImplR<Colours>, MinimumNorm2, ScalarNxNMatrixFields<Colours> >;
} // namespace QCD NAMESPACE_END(Grid);
} // namespace Grid
#endif // GRID_GENERIC_HMC_RUNNER #endif // GRID_GENERIC_HMC_RUNNER