From 8522352aa3bf6c7bfd8a96753c345611138fa93b Mon Sep 17 00:00:00 2001 From: Julian Lenz Date: Mon, 15 May 2023 18:36:05 +0100 Subject: [PATCH] ClangFormat --- .../sp2n/Test_hmc_Sp_Wilson2ASFermionGauge.cc | 82 +++++++++---------- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/tests/sp2n/Test_hmc_Sp_Wilson2ASFermionGauge.cc b/tests/sp2n/Test_hmc_Sp_Wilson2ASFermionGauge.cc index 8f293e72..b7cdb95f 100644 --- a/tests/sp2n/Test_hmc_Sp_Wilson2ASFermionGauge.cc +++ b/tests/sp2n/Test_hmc_Sp_Wilson2ASFermionGauge.cc @@ -2,29 +2,32 @@ int main(int argc, char **argv) { using namespace Grid; - - typedef Representations< SpFundamentalRepresentation, SpTwoIndexAntiSymmetricRepresentation > TheRepresentations; + + typedef Representations + TheRepresentations; Grid_init(&argc, &argv); - - typedef GenericSp2nHMCRunnerHirep HMCWrapper; + + typedef GenericSp2nHMCRunnerHirep + HMCWrapper; typedef SpWilsonTwoIndexAntiSymmetricImplR FermionImplPolicy; typedef SpWilsonTwoIndexAntiSymmetricFermionR FermionAction; typedef typename FermionAction::FermionField FermionField; - + //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: - + HMCWrapper TheHMC; - + TheHMC.Resources.AddFourDimGrid("gauge"); - + // Checkpointer definition CheckpointerParameters CPparams; CPparams.config_prefix = "ckpoint_lat"; CPparams.rng_prefix = "ckpoint_rng"; CPparams.saveInterval = 100; CPparams.format = "IEEE64BIG"; - + TheHMC.Resources.LoadNerscCheckpointer(CPparams); RNGModuleParameters RNGpar; @@ -35,48 +38,45 @@ int main(int argc, char **argv) { // Construct observables typedef PlaquetteMod PlaqObs; TheHMC.Resources.AddObservable(); - - RealD beta = 6.7 ; - + + RealD beta = 6.7; + SpWilsonGaugeActionR Waction(beta); - + auto GridPtr = TheHMC.Resources.GetCartesian(); auto GridRBPtr = TheHMC.Resources.GetRBCartesian(); - - SpTwoIndexAntiSymmetricRepresentation::LatticeField U(GridPtr); - //LatticeGaugeField U(GridPtr); - - RealD mass = -0.115; - - std::vector boundary = {-1,-1,-1,-1}; + SpTwoIndexAntiSymmetricRepresentation::LatticeField U(GridPtr); + // LatticeGaugeField U(GridPtr); + + RealD mass = -0.115; + + std::vector boundary = {-1, -1, -1, -1}; FermionAction::ImplParams bc(boundary); FermionAction FermOp(U, *GridPtr, *GridRBPtr, mass, bc); - - + ConjugateGradient CG(1.0e-8, 2000, false); - + TwoFlavourPseudoFermionAction Nf2(FermOp, CG, CG); - + Nf2.is_smeared = false; std::cout << GridLogMessage << "mass " << mass << std::endl; - - ActionLevel Level1(1); - Level1.push_back(&Nf2); - - ActionLevel Level2(4); - Level2.push_back(&Waction); - - TheHMC.TheAction.push_back(Level1); - TheHMC.TheAction.push_back(Level2); - - TheHMC.Parameters.MD.MDsteps = 16; - TheHMC.Parameters.MD.trajL = 1.0; - - TheHMC.ReadCommandLine(argc, argv); - TheHMC.Run(); - - + + ActionLevel Level1(1); + Level1.push_back(&Nf2); + + ActionLevel Level2(4); + Level2.push_back(&Waction); + + TheHMC.TheAction.push_back(Level1); + TheHMC.TheAction.push_back(Level2); + + TheHMC.Parameters.MD.MDsteps = 16; + TheHMC.Parameters.MD.trajL = 1.0; + + TheHMC.ReadCommandLine(argc, argv); + TheHMC.Run(); + Grid_finalize(); }