diff --git a/lib/qcd/hmc/integrators/Integrator_base.h b/lib/qcd/hmc/integrators/Integrator_base.h deleted file mode 100644 index ea088f8d..00000000 --- a/lib/qcd/hmc/integrators/Integrator_base.h +++ /dev/null @@ -1,220 +0,0 @@ -//-------------------------------------------------------------------- -/*! @file Integrator_base.h - * @brief Declaration of classes for the abstract Molecular Dynamics integrator - * - * @author Guido Cossu - */ -//-------------------------------------------------------------------- - -#ifndef INTEGRATOR_INCLUDED -#define INTEGRATOR_INCLUDED - -#include - -class Observer; - - -/*! @brief Abstract base class for Molecular Dynamics management */ - -namespace Grid{ - namespace QCD{ - - typedef Action* ActPtr; // now force the same size as the rest of the code - typedef std::vector ActionLevel; - typedef std::vector ActionSet; - typedef std::vector ObserverList; - - class LeapFrog; - - - struct IntegratorParameters{ - int Nexp; - int MDsteps; // number of outer steps - RealD trajL; // trajectory length - RealD stepsize; - - IntegratorParameters(int Nexp_, - int MDsteps_, - RealD trajL_): - Nexp(Nexp_),MDsteps(MDsteps_),trajL(trajL_),stepsize(trajL/MDsteps){}; - }; - - - namespace MDutils{ - void generate_momenta(LatticeLorentzColourMatrix&,GridParallelRNG&); - void generate_momenta_su3(LatticeLorentzColourMatrix&,GridParallelRNG&); - } - - template< class IntegratorPolicy > - class Integrator{ - private: - IntegratorParameters Params; - const ActionSet as; - const std::vector Nrel; //relative step size per level - //ObserverList observers; // not yet - std::unique_ptr P; - - IntegratorPolicy TheIntegrator;// contains parameters too - - void update_P(LatticeLorentzColourMatrix&U, int level,double ep){ - for(int a=0; aderiv(U,force); - - Complex dSdt=0.0; - for(int mu=0;mu(force,mu); - mommu=PeekIndex(*P,mu); - - dSdt += sum(trace(forcemu*(*P))); - - } - std::cout << GridLogMessage << " action "<(U, mu); - Pmu=PeekIndex(*P, mu); - Umu = expMat(Pmu, Complex(ep, 0.0))*Umu; - } - - } - - void register_observers(); - void notify_observers(); - - friend void IntegratorPolicy::step (LatticeLorentzColourMatrix& U, - int level, std::vector& clock, - Integrator* Integ); - public: - Integrator(IntegratorParameters Par, - ActionSet& Aset, std::vector Nrel_): - Params(Par),as(Aset),Nrel(Nrel_){ - assert(as.size() == Nrel.size()); - }; - - ~Integrator(){} - - - //Initialization of momenta and actions - void init(LatticeLorentzColourMatrix& U, - GridParallelRNG& pRNG){ - std::cout<init(U, pRNG); - } - } - } - - - - RealD S(LatticeLorentzColourMatrix& U){ - // Momenta - LatticeComplex Hloc = - trace((*P)*adj(*P)); - Complex Hsum = sum(Hloc); - - RealD H = Hsum.real(); - - // Actions - for(int level=0; levelS(U); - - return H; - } - - - - void integrate(LatticeLorentzColourMatrix& U, int level){ - std::vector clock; - clock.resize(as.size(),0); - for(int step=0; step< Params.MDsteps; ++step) // MD step - TheIntegrator.step(U,0,clock, *(this)); - } - }; - - - class MinimumNorm2{ - const double lambda = 0.1931833275037836; - public: - void step (LatticeLorentzColourMatrix& U, int level, std::vector& clock); - - }; - - class LeapFrog{ - public: - void step (LatticeLorentzColourMatrix& U, - int level, std::vector& clock, - Integrator* Integ){ - // cl : current level - // fl : final level - // eps : current step size - - int fl = Integ->as.size() -1; - double eps = Integ->Params.stepsize; - - // Get current level step size - for(int l=0; l<=level; ++l) eps/= Integ->Nrel[l]; - - int fin = 1; - for(int l=0; l<=level; ++l) fin*= Integ->Nrel[l]; - fin = 2*Integ->Params.MDsteps*fin - 1; - - for(int e=0; eNrel[level]; ++e){ - - if(clock[level] == 0){ // initial half step - Integ->update_P(U, level,eps/2); - ++clock[level]; - for(int l=0; lupdate_U(U, eps); - for(int l=0; lupdate_P(U, level,eps/2); - - ++clock[level]; - for(int l=0; lupdate_P(U, level,eps); - - clock[level]+=2; - for(int l=0; l