Walker test code coverage report
Current view: top level - Control/Walker/Options - InitPolicy.hpp (source / functions) Hit Total Coverage
Commit: test_coverage.info Lines: 29 29 100.0 %
Date: 2022-09-21 13:52:12 Functions: 1 1 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 42 118 35.6 %

           Branch data     Line data    Source code
       1                 :            : // *****************************************************************************
       2                 :            : /*!
       3                 :            :   \file      src/Control/Walker/Options/InitPolicy.hpp
       4                 :            :   \copyright 2012-2015 J. Bakosi,
       5                 :            :              2016-2018 Los Alamos National Security, LLC.,
       6                 :            :              2019-2021 Triad National Security, LLC.
       7                 :            :              All rights reserved. See the LICENSE file for details.
       8                 :            :   \brief     Differential equation initialization policy options for walker
       9                 :            :   \details   Differential equation initialization policy options for walker
      10                 :            : */
      11                 :            : // *****************************************************************************
      12                 :            : #ifndef InitPolicyOptions_h
      13                 :            : #define InitPolicyOptions_h
      14                 :            : 
      15                 :            : #include <brigand/sequences/list.hpp>
      16                 :            : #include <brigand/algorithms/for_each.hpp>
      17                 :            : 
      18                 :            : #include "Toggle.hpp"
      19                 :            : #include "Keywords.hpp"
      20                 :            : #include "PUPUtil.hpp"
      21                 :            : 
      22                 :            : namespace walker {
      23                 :            : namespace ctr {
      24                 :            : 
      25                 :            : //! Differential equation initializion policy types
      26                 :            : enum class InitPolicyType : uint8_t { RAW=0,
      27                 :            :                                       ZERO,
      28                 :            :                                       JOINTDELTA,
      29                 :            :                                       JOINTGAUSSIAN,
      30                 :            :                                       JOINTCORRGAUSSIAN,
      31                 :            :                                       JOINTBETA,
      32                 :            :                                       JOINTGAMMA,
      33                 :            :                                       JOINTDIRICHLET };
      34                 :            : 
      35                 :            : //! Pack/Unpack InitPolicyType: forward overload to generic enum class packer
      36                 :            : inline void operator|( PUP::er& p, InitPolicyType& e ) { PUP::pup( p, e ); }
      37                 :            : 
      38                 :            : //! InitPolicy options: outsource searches to base templated on enum type
      39 [ +  - ][ +  - ]:        311 : class InitPolicy : public tk::Toggle< InitPolicyType > {
      40                 :            : 
      41                 :            :   public:
      42                 :            :     //! Valid expected choices to make them also available at compile-time
      43                 :            :     using keywords = brigand::list< kw::raw
      44                 :            :                                   , kw::zero
      45                 :            :                                   , kw::jointdelta
      46                 :            :                                   , kw::jointgaussian
      47                 :            :                                   , kw::jointcorrgaussian
      48                 :            :                                   , kw::jointbeta
      49                 :            :                                   , kw::jointgamma
      50                 :            :                                   , kw::jointdirichlet
      51                 :            :                                   >;
      52                 :            : 
      53                 :            :     //! \brief Options constructor
      54                 :            :     //! \details Simply initialize in-line and pass associations to base, which
      55                 :            :     //!    will handle client interactions
      56                 :        311 :     explicit InitPolicy() :
      57                 :            :       tk::Toggle< InitPolicyType >(
      58                 :            :         //! Group, i.e., options, name
      59                 :            :         "Initialization Policy",
      60                 :            :         //! Enums -> names
      61                 :        311 :         { { InitPolicyType::RAW, kw::raw::name() },
      62 [ -  + ][ -  - ]:        311 :           { InitPolicyType::ZERO, kw::zero::name() },
      63 [ -  + ][ -  - ]:        311 :           { InitPolicyType::JOINTDELTA, kw::jointdelta::name() },
      64 [ -  + ][ -  - ]:        311 :           { InitPolicyType::JOINTGAUSSIAN, kw::jointgaussian::name() },
      65 [ -  + ][ -  - ]:        311 :           { InitPolicyType::JOINTCORRGAUSSIAN, kw::jointcorrgaussian::name() },
      66 [ -  + ][ -  - ]:        311 :           { InitPolicyType::JOINTBETA, kw::jointbeta::name() },
      67 [ -  + ][ -  - ]:        311 :           { InitPolicyType::JOINTGAMMA, kw::jointgamma::name() },
      68 [ -  + ][ -  - ]:        311 :           { InitPolicyType::JOINTDIRICHLET, kw::jointdirichlet::name() } },
      69                 :            :         //! keywords -> Enums
      70                 :        311 :         { { kw::raw::string(), InitPolicyType::RAW },
      71 [ -  + ][ -  - ]:        311 :           { kw::zero::string(), InitPolicyType::ZERO },
      72 [ -  + ][ -  - ]:        311 :           { kw::jointdelta::string(), InitPolicyType::JOINTDELTA },
      73 [ -  + ][ -  - ]:        311 :           { kw::jointgaussian::string(), InitPolicyType::JOINTGAUSSIAN },
      74 [ -  + ][ -  - ]:        311 :           { kw::jointcorrgaussian::string(),
      75                 :            :             InitPolicyType::JOINTCORRGAUSSIAN },
      76 [ -  + ][ -  - ]:        311 :           { kw::jointbeta::string(), InitPolicyType::JOINTBETA },
      77 [ -  + ][ -  - ]:        311 :           { kw::jointgamma::string(), InitPolicyType::JOINTGAMMA },
      78 [ +  - ][ +  - ]:      12129 :           { kw::jointdirichlet::string(), InitPolicyType::JOINTDIRICHLET } } )
         [ +  - ][ +  + ]
         [ +  + ][ -  + ]
         [ +  + ][ +  + ]
         [ -  + ][ -  + ]
         [ +  - ][ +  - ]
         [ +  - ][ +  - ]
         [ +  - ][ +  - ]
         [ +  - ][ +  - ]
         [ -  + ][ +  + ]
         [ -  + ][ -  - ]
         [ -  - ][ -  - ]
         [ -  - ][ -  - ]
         [ -  - ][ -  - ]
                 [ -  - ]
      79                 :            :     {
      80                 :            :        brigand::for_each< keywords >( assertPolicyCodes() );
      81                 :        311 :     }
      82                 :            : 
      83                 :            :     //! \brief Return policy code based on Enum
      84                 :            :     //! \param[in] p Enum value of the option requested
      85                 :            :     //! \return Policy code of the option
      86                 :            :     const std::string& code( InitPolicyType p ) const {
      87                 :            :       using tk::operator<<;
      88                 :            :       auto it = policy.find( p );
      89                 :            :       Assert( it != end(policy),
      90                 :            :               std::string("Cannot find policy code for physics \"") << p <<
      91                 :            :                 "\"" );
      92         [ +  - ]:      19344 :       return it->second;
      93                 :            :     }
      94                 :            : 
      95                 :            :   private:
      96                 :            :     //! Function object for ensuring the existence of policy codes
      97                 :            :     struct assertPolicyCodes {
      98                 :            :       //! \brief Function call operator templated on the type to assert the
      99                 :            :       //!   existence of a policy code
     100                 :            :       template< typename U > void operator()( brigand::type_<U> ) {
     101                 :            :         static_assert( tk::HasTypedef_code_v< typename U::info >,
     102                 :            :                        "Policy code undefined for keyword" );
     103                 :            :       }
     104                 :            :     };
     105                 :            : 
     106                 :            :     //! Enums -> policy code
     107                 :            :     std::map< InitPolicyType, std::string > policy {
     108                 :        311 :         { InitPolicyType::RAW, *kw::raw::code() }
     109                 :        311 :       , { InitPolicyType::ZERO, *kw::zero::code() }
     110                 :        311 :       , { InitPolicyType::JOINTDELTA, *kw::jointdelta::code() }
     111                 :        311 :       , { InitPolicyType::JOINTGAUSSIAN, *kw::jointgaussian::code() }
     112                 :        311 :       , { InitPolicyType::JOINTCORRGAUSSIAN, *kw::jointcorrgaussian::code() }
     113                 :        311 :       , { InitPolicyType::JOINTBETA, *kw::jointbeta::code() }
     114                 :        311 :       , { InitPolicyType::JOINTGAMMA, *kw::jointgamma::code() }
     115                 :        311 :       , { InitPolicyType::JOINTDIRICHLET, *kw::jointdirichlet::code() }
     116         [ -  - ]:        311 :     };
     117                 :            : };
     118                 :            : 
     119                 :            : } // ctr::
     120                 :            : } // walker::
     121                 :            : 
     122                 :            : #endif // InitPolicyOptions_h

Generated by: LCOV version 1.14