1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 09:15:38 +01:00

Minor clean-up

This commit is contained in:
David Murphy 2017-08-16 20:57:51 -04:00
parent 47a12ec7b5
commit d9d3d30cc7

View File

@ -35,24 +35,6 @@ See the full license in the file "LICENSE" in the top level distribution directo
namespace Grid {
namespace QCD {
/*template<typename T> struct switcheroo {
static inline int iscomplex() { return 0; }
template<class vec>
static inline vec mult(vec a, vec b){ return real_mult(a,b); }
};
template<> struct switcheroo<ComplexD> {
static inline int iscomplex() { return 1; }
template<class vec>
static inline vec mult(vec a, vec b){ return a*b; }
};
template<> struct switcheroo<ComplexF> {
static inline int iscomplex() { return 1; }
template<class vec>
static inline vec mult(vec a, vec b) { return a*b; }
};*/
template<class Impl>
class DomainWallEOFAFermion : public AbstractEOFAFermion<Impl>
{