From 0ce4ecfc84c5d11f1c4daefc54818b84f97dba28 Mon Sep 17 00:00:00 2001 From: paboyle Date: Sun, 14 Jan 2018 23:28:12 +0000 Subject: [PATCH] Emacs format indent --- .../fermion/ImprovedStaggeredFermion5D.cc | 64 +++++++++---------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/lib/qcd/action/fermion/ImprovedStaggeredFermion5D.cc b/lib/qcd/action/fermion/ImprovedStaggeredFermion5D.cc index 7fa65d7e..643ed825 100644 --- a/lib/qcd/action/fermion/ImprovedStaggeredFermion5D.cc +++ b/lib/qcd/action/fermion/ImprovedStaggeredFermion5D.cc @@ -24,8 +24,8 @@ Author: Peter Boyle 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. See the full license in the file "LICENSE" in the top level distribution directory - *************************************************************************************/ - /* END LEGAL */ +*************************************************************************************/ +/* END LEGAL */ #include #include #include @@ -38,7 +38,7 @@ ImprovedStaggeredFermion5DStatic::directions({1,2,3,4,1,2,3,4,1,2,3,4,1,2,3,4}); const std::vector ImprovedStaggeredFermion5DStatic::displacements({1, 1, 1, 1, -1, -1, -1, -1, 3, 3, 3, 3, -3, -3, -3, -3}); - // 5d lattice for DWF. +// 5d lattice for DWF. template ImprovedStaggeredFermion5D::ImprovedStaggeredFermion5D(GaugeField &_Uthin,GaugeField &_Ufat, GridCartesian &FiveDimGrid, @@ -183,12 +183,12 @@ void ImprovedStaggeredFermion5D::DhopDir(const FermionField &in, FermionFi template void ImprovedStaggeredFermion5D::DerivInternal(StencilImpl & st, - DoubledGaugeField & U, - DoubledGaugeField & UUU, - GaugeField &mat, - const FermionField &A, - const FermionField &B, - int dag) + DoubledGaugeField & U, + DoubledGaugeField & UUU, + GaugeField &mat, + const FermionField &A, + const FermionField &B, + int dag) { // No force terms in multi-rhs solver staggered assert(0); @@ -196,18 +196,18 @@ void ImprovedStaggeredFermion5D::DerivInternal(StencilImpl & st, template void ImprovedStaggeredFermion5D::DhopDeriv(GaugeField &mat, - const FermionField &A, - const FermionField &B, - int dag) + const FermionField &A, + const FermionField &B, + int dag) { assert(0); } template void ImprovedStaggeredFermion5D::DhopDerivEO(GaugeField &mat, - const FermionField &A, - const FermionField &B, - int dag) + const FermionField &A, + const FermionField &B, + int dag) { assert(0); } @@ -215,9 +215,9 @@ void ImprovedStaggeredFermion5D::DhopDerivEO(GaugeField &mat, template void ImprovedStaggeredFermion5D::DhopDerivOE(GaugeField &mat, - const FermionField &A, - const FermionField &B, - int dag) + const FermionField &A, + const FermionField &B, + int dag) { assert(0); } @@ -247,7 +247,7 @@ void ImprovedStaggeredFermion5D::DhopInternal(StencilImpl & st, LebesgueOr } else { parallel_for (int ss = 0; ss < U._grid->oSites(); ss++) { int sU=ss; - Kernels::DhopSite(st,lo,U,UUU,st.CommBuf(),LLs,sU,in,out); + Kernels::DhopSite(st,lo,U,UUU,st.CommBuf(),LLs,sU,in,out); } } DhopComputeTime += usecond(); @@ -399,7 +399,7 @@ void ImprovedStaggeredFermion5D::MooeeInv(const FermionField &in, FermionF template void ImprovedStaggeredFermion5D::MooeeInvDag(const FermionField &in, - FermionField &out) { + FermionField &out) { out.checkerboard = in.checkerboard; MooeeInv(in, out); } @@ -409,24 +409,24 @@ void ImprovedStaggeredFermion5D::MooeeInvDag(const FermionField &in, //////////////////////////////////////////////////////// template void ImprovedStaggeredFermion5D::ContractConservedCurrent(PropagatorField &q_in_1, - PropagatorField &q_in_2, - PropagatorField &q_out, - Current curr_type, - unsigned int mu) + PropagatorField &q_in_2, + PropagatorField &q_out, + Current curr_type, + unsigned int mu) { - assert(0); + assert(0); } template void ImprovedStaggeredFermion5D::SeqConservedCurrent(PropagatorField &q_in, - PropagatorField &q_out, - Current curr_type, - unsigned int mu, - std::vector mom, - unsigned int tmin, - unsigned int tmax) + PropagatorField &q_out, + Current curr_type, + unsigned int mu, + std::vector mom, + unsigned int tmin, + unsigned int tmax) { - assert(0); + assert(0); } FermOpStaggeredTemplateInstantiate(ImprovedStaggeredFermion5D);