Line data Source code
1 0 : // Distributed under the MIT License. 2 : // See LICENSE.txt for details. 3 : 4 : #pragma once 5 : 6 : #include "Elliptic/BoundaryConditions/AnalyticSolution.hpp" 7 : #include "Elliptic/Systems/BnsInitialData/BoundaryConditions/StarSurface.hpp" 8 : #include "Utilities/TMPL.hpp" 9 : 10 : /// \brief Boundary conditions for binary neutron star initial data. 11 1 : namespace BnsInitialData::BoundaryConditions { 12 : 13 : template <typename System> 14 0 : using standard_boundary_conditions = 15 : tmpl::list<elliptic::BoundaryConditions::AnalyticSolution<System>, 16 : StarSurface>; 17 : } // namespace BnsInitialData::BoundaryConditions