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/Systems/Poisson/BoundaryConditions/Robin.hpp" 7 : #include "Elliptic/Systems/ScalarGaussBonnet/BoundaryConditions/DoNothing.hpp" 8 : #include "Utilities/TMPL.hpp" 9 : 10 : namespace sgb::BoundaryConditions { 11 : 12 0 : using standard_boundary_conditions = 13 : tmpl::list<::Poisson::BoundaryConditions::Robin<3>, DoNothing>; 14 : 15 : } // namespace sgb::BoundaryConditions