/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid Source file: ./lib/qcd/action/ActionSet.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 ACTION_SET_H #define ACTION_SET_H namespace Grid { // Should drop this namespace here namespace QCD { ////////////////////////////////// // Indexing of tuple types ////////////////////////////////// template struct Index; template struct Index> { static const std::size_t value = 0; }; template struct Index> { static const std::size_t value = 1 + Index>::value; }; //////////////////////////////////////////// // Action Level // Action collection // in a integration level // (for multilevel integration schemes) //////////////////////////////////////////// template struct ActionLevel { public: unsigned int multiplier; // Fundamental repr actions separated because of the smearing typedef Action* ActPtr; // construct a tuple of vectors of the actions for the corresponding higher // representation fields typedef typename AccessTypes::VectorCollection action_collection; typedef typename AccessTypes::FieldTypeCollection action_hirep_types; action_collection actions_hirep; std::vector& actions; explicit ActionLevel(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); } template < class GenField > void push_back(Action* ptr) { // insert only in the correct vector std::get< Index < GenField, action_hirep_types>::value >(actions_hirep).push_back(ptr); }; template static void resize(ActPtr ap, unsigned int n) { ap->resize(n); } // 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...); } }; // Define the ActionSet template using ActionSet = std::vector >; } // QCD } // Grid #endif // ACTION_SET_H