Line data Source code
1 0 : // Distributed under the MIT License. 2 : // See LICENSE.txt for details. 3 : 4 : #pragma once 5 : 6 : #include <cstddef> 7 : 8 : #include "Evolution/Systems/NewtonianEuler/BoundaryCorrections/Hll.hpp" 9 : #include "Evolution/Systems/NewtonianEuler/BoundaryCorrections/Hllc.hpp" 10 : #include "Evolution/Systems/NewtonianEuler/BoundaryCorrections/Rusanov.hpp" 11 : #include "Utilities/TMPL.hpp" 12 : 13 1 : namespace NewtonianEuler::BoundaryCorrections { 14 : template <size_t Dim> 15 0 : using standard_boundary_corrections = 16 : tmpl::list<Hll<Dim>, Hllc<Dim>, Rusanov<Dim>>; 17 : } // namespace NewtonianEuler::BoundaryCorrections