Line data Source code
1 0 : // Distributed under the MIT License. 2 : // See LICENSE.txt for details. 3 : 4 : #pragma once 5 : 6 : #include "PointwiseFunctions/ScalarTensor/ScalarGaussBonnet/CouplingFunctions/Exponential.hpp" 7 : #include "PointwiseFunctions/ScalarTensor/ScalarGaussBonnet/CouplingFunctions/QuarticPolynomial.hpp" 8 : #include "Utilities/TMPL.hpp" 9 : 10 : namespace ScalarTensor::sgb::CouplingFunctions { 11 : /*! 12 : * \brief Typelist of all implemented coupling functions for 13 : * Einstein-scalar-Gauss-Bonnet gravity. 14 : */ 15 1 : using all_coupling_functions = tmpl::list<Exponential, QuarticPolynomial>; 16 : } // namespace ScalarTensor::sgb::CouplingFunctions