SpECTRE Documentation Coverage Report
Current view: top level - PointwiseFunctions/AnalyticSolutions/Elasticity - Factory.hpp Hit Total Coverage
Commit: 0a69427d3dc19cb77b6ca61d0cc3acfd3eca9706 Lines: 0 2 0.0 %
Date: 2024-04-26 01:27:01
Legend: Lines: hit not hit

          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 "PointwiseFunctions/AnalyticSolutions/Elasticity/BentBeam.hpp"
       9             : #include "PointwiseFunctions/AnalyticSolutions/Elasticity/HalfSpaceMirror.hpp"
      10             : #include "PointwiseFunctions/AnalyticSolutions/Elasticity/Zero.hpp"
      11             : #include "Utilities/TMPL.hpp"
      12             : 
      13             : namespace Elasticity::Solutions {
      14             : template <size_t Dim>
      15           0 : using all_analytic_solutions = tmpl::append<
      16             :     tmpl::list<Zero<Dim>>,
      17             :     tmpl::conditional_t<Dim == 2, tmpl::list<BentBeam>, tmpl::list<>>,
      18             :     tmpl::conditional_t<Dim == 3, tmpl::list<HalfSpaceMirror>, tmpl::list<>>>;
      19             : }  // namespace Elasticity::Solutions

Generated by: LCOV version 1.14