Quinoa regression test code coverage report
Current view: top level - Control/Walker/Options - InitPolicy.hpp (source / functions) Hit Total Coverage
Commit: Quinoa_v0.3-957-gb4f0efae0 Lines: 18 20 90.0 %
Date: 2021-11-11 13:17:06 Functions: 2 2 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 23 46 50.0 %

           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                 :        371 : 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                 :            : 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                 :        180 :     explicit InitPolicy() :
      57                 :            :       tk::Toggle< InitPolicyType >(
      58                 :            :         //! Group, i.e., options, name
      59                 :            :         "Initialization Policy",
      60                 :            :         //! Enums -> names
      61         [ +  - ]:        180 :         { { InitPolicyType::RAW, kw::raw::name() },
      62         [ +  - ]:        360 :           { InitPolicyType::ZERO, kw::zero::name() },
      63         [ +  - ]:        360 :           { InitPolicyType::JOINTDELTA, kw::jointdelta::name() },
      64         [ +  - ]:        360 :           { InitPolicyType::JOINTGAUSSIAN, kw::jointgaussian::name() },
      65         [ +  - ]:        360 :           { InitPolicyType::JOINTCORRGAUSSIAN, kw::jointcorrgaussian::name() },
      66         [ +  - ]:        360 :           { InitPolicyType::JOINTBETA, kw::jointbeta::name() },
      67         [ +  - ]:        360 :           { InitPolicyType::JOINTGAMMA, kw::jointgamma::name() },
      68         [ +  - ]:        360 :           { InitPolicyType::JOINTDIRICHLET, kw::jointdirichlet::name() } },
      69                 :            :         //! keywords -> Enums
      70                 :          0 :         { { kw::raw::string(), InitPolicyType::RAW },
      71         [ +  - ]:        360 :           { kw::zero::string(), InitPolicyType::ZERO },
      72         [ +  - ]:        360 :           { kw::jointdelta::string(), InitPolicyType::JOINTDELTA },
      73         [ +  - ]:        360 :           { kw::jointgaussian::string(), InitPolicyType::JOINTGAUSSIAN },
      74         [ +  - ]:        360 :           { kw::jointcorrgaussian::string(),
      75                 :          0 :             InitPolicyType::JOINTCORRGAUSSIAN },
      76         [ +  - ]:        360 :           { kw::jointbeta::string(), InitPolicyType::JOINTBETA },
      77         [ +  - ]:        360 :           { kw::jointgamma::string(), InitPolicyType::JOINTGAMMA },
      78 [ +  - ][ +  - ]:       5760 :           { kw::jointdirichlet::string(), InitPolicyType::JOINTDIRICHLET } } )
         [ +  - ][ +  - ]
         [ +  - ][ +  + ]
         [ +  + ][ -  - ]
                 [ -  - ]
      79                 :        180 :     {}
      80                 :            : };
      81                 :            : 
      82                 :            : } // ctr::
      83                 :            : } // walker::
      84                 :            : 
      85                 :            : #endif // InitPolicyOptions_h

Generated by: LCOV version 1.14