From 33edde245d45e323275d78cd9e47e7b1502f348b Mon Sep 17 00:00:00 2001 From: Chulwoo Jung Date: Sun, 12 Mar 2017 23:02:42 -0400 Subject: [PATCH] Changing Dminus(Dag) to use full vectors to work correctly --- lib/qcd/action/fermion/CayleyFermion5D.cc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/qcd/action/fermion/CayleyFermion5D.cc b/lib/qcd/action/fermion/CayleyFermion5D.cc index 14b4edb6..4aa48aa1 100644 --- a/lib/qcd/action/fermion/CayleyFermion5D.cc +++ b/lib/qcd/action/fermion/CayleyFermion5D.cc @@ -57,10 +57,11 @@ void CayleyFermion5D::Dminus(const FermionField &psi, FermionField &chi) { int Ls=this->Ls; - this->DW(psi,this->tmp(),DaggerNo); + FermionField tmp_f(this->FermionGrid()); + this->DW(psi,tmp_f,DaggerNo); for(int s=0;stmp(),s,s);// chi = (1-c[s] D_W) psi + axpby_ssp(chi,Coeff_t(1.0),psi,-cs[s],tmp_f,s,s);// chi = (1-c[s] D_W) psi } } @@ -112,10 +113,11 @@ void CayleyFermion5D::DminusDag(const FermionField &psi, FermionField &chi { int Ls=this->Ls; - this->DW(psi,this->tmp(),DaggerYes); + FermionField tmp_f(this->FermionGrid()); + this->DW(psi,tmp_f,DaggerYes); for(int s=0;stmp(),s,s);// chi = (1-c[s] D_W) psi + axpby_ssp(chi,Coeff_t(1.0),psi,-cs[s],tmp_f,s,s);// chi = (1-c[s] D_W) psi } } template