From 65b48831fb97160a51a14cf82267e3430310b2a1 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Tue, 4 Jun 2019 20:56:30 +0100 Subject: [PATCH] Simplify code --- .../action/fermion/DomainWallEOFAFermion.h | 27 +------------------ 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/Grid/qcd/action/fermion/DomainWallEOFAFermion.h b/Grid/qcd/action/fermion/DomainWallEOFAFermion.h index eab56346..a2d0e733 100644 --- a/Grid/qcd/action/fermion/DomainWallEOFAFermion.h +++ b/Grid/qcd/action/fermion/DomainWallEOFAFermion.h @@ -27,8 +27,7 @@ with this program; if not, write to the Free Software Foundation, Inc., See the full license in the file "LICENSE" in the top level distribution directory *************************************************************************************/ /* END LEGAL */ -#ifndef GRID_QCD_DOMAIN_WALL_EOFA_FERMION_H -#define GRID_QCD_DOMAIN_WALL_EOFA_FERMION_H +#pragma once #include @@ -75,16 +74,6 @@ public: void M5Ddag(const FermionField& psi, const FermionField& phi, FermionField& chi, Vector& lower, Vector& diag, Vector& upper); - void MooeeInternal(const FermionField& in, FermionField& out, int dag, int inv); - - void MooeeInternalCompute(int dag, int inv, Vector>& Matp, Vector>& Matm); - - void MooeeInternalAsm(const FermionField& in, FermionField& out, int LLs, int site, - Vector>& Matp, Vector>& Matm); - - void MooeeInternalZAsm(const FermionField& in, FermionField& out, int LLs, int site, - Vector>& Matp, Vector>& Matm); - virtual void RefreshShiftCoefficients(RealD new_shift); // Constructors @@ -99,17 +88,3 @@ protected: NAMESPACE_END(Grid); -#define INSTANTIATE_DPERP_DWF_EOFA(A) \ - template void DomainWallEOFAFermion::M5D(const FermionField& psi, const FermionField& phi, FermionField& chi, \ - Vector& lower, Vector& diag, Vector& upper); \ - template void DomainWallEOFAFermion::M5Ddag(const FermionField& psi, const FermionField& phi, FermionField& chi, \ - Vector& lower, Vector& diag, Vector& upper); \ - template void DomainWallEOFAFermion::MooeeInv(const FermionField& psi, FermionField& chi); \ - template void DomainWallEOFAFermion::MooeeInvDag(const FermionField& psi, FermionField& chi); - -#undef DOMAIN_WALL_EOFA_DPERP_DENSE -#define DOMAIN_WALL_EOFA_DPERP_CACHE -#undef DOMAIN_WALL_EOFA_DPERP_LINALG -#define DOMAIN_WALL_EOFA_DPERP_VEC - -#endif