/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid Source file: ./lib/qcd/action/ActionBase.h Copyright (C) 2015 Author: Peter Boyle Author: neo This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 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 */ #ifndef QCD_ACTION_BASE #define QCD_ACTION_BASE namespace Grid { namespace QCD { template class Action { public: bool is_smeared = false; // Boundary conditions? // Heatbath? virtual void refresh(const GaugeField& U, GridParallelRNG& pRNG) = 0; // refresh pseudofermions virtual RealD S(const GaugeField& U) = 0; // evaluate the action virtual void deriv(const GaugeField& U, GaugeField& dSdU) = 0; // evaluate the action derivative virtual ~Action(){}; }; // Could derive PseudoFermion action with a PF field, FermionField, and a Grid; // implement refresh /* template class PseudoFermionAction : public Action { public: FermionField Phi; GridParallelRNG &pRNG; GridBase &Grid; PseudoFermionAction(GridBase &_Grid,GridParallelRNG &_pRNG) : Grid(_Grid), Phi(&_Grid), pRNG(_pRNG) { }; virtual void refresh(const GaugeField &gauge) { gaussian(Phi,pRNG); }; }; */ template struct ActionLevel { public: typedef Action* ActPtr; // now force the same colours as the rest of the code //Add supported representations here unsigned int multiplier; std::vector actions; ActionLevel(unsigned int mul = 1) : actions(0), multiplier(mul) { assert(mul >= 1); }; void push_back(ActPtr ptr) { actions.push_back(ptr); } }; template struct ActionLevelHirep { public: unsigned int multiplier; // Fundamental repr actions separated because of the smearing typedef Action* ActPtr; //std::vector actions; // construct a tuple of vectors of the actions for the corresponding higher // representation fields typedef typename AccessTypes::VectorCollection action_collection; action_collection actions_hirep; typedef typename AccessTypes::ClassCollection actions_hirep_ptrs_type; std::vector& actions; // Temporary conversion between ActionLevel and ActionLevelHirep ActionLevelHirep(ActionLevel& AL ):actions(AL.actions), multiplier(AL.multiplier){} ActionLevelHirep(unsigned int mul = 1) : actions(std::get<0>(actions_hirep)), multiplier(mul) { // initialize the hirep vectors to zero. //apply(this->resize, actions_hirep, 0); //need a working resize assert(mul >= 1); }; void push_back(ActPtr ptr) { actions.push_back(ptr); } // SFINAE construct, check template void push_back(actionpointer ptr, decltype(std::tuple_element::value)* = 0) { //insert only in the correct vector std::get(actions_hirep).push_back(ptr); }; template < class ActPtr> static void resize(ActPtr ap, unsigned int n){ ap->resize(n); } template auto getRepresentation(Repr& R)->decltype(std::get(R).U) {return std::get(R).U;} // Loop on tuple for a callable function template inline typename std::enable_if::value, void>::type apply( Callable, Repr& R,Args...) const {} template inline typename std::enable_if::value, void>::type apply( Callable fn, Repr& R, Args... arguments) const { fn(std::get(actions_hirep), std::get(R.rep), arguments...); apply(fn, R, arguments...); } }; template using ActionSet = std::vector >; template using ActionSetHirep = std::vector >; } } #endif