Quinoa all test code coverage report
Current view: top level - Control/Inciter/Options - Initiate.hpp (source / functions) Hit Total Coverage
Commit: Quinoa_v0.3-957-gb4f0efae0 Lines: 8 8 100.0 %
Date: 2021-11-09 15:14:18 Functions: 1 1 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 13 38 34.2 %

           Branch data     Line data    Source code
       1                 :            : // *****************************************************************************
       2                 :            : /*!
       3                 :            :   \file      src/Control/Inciter/Options/Initiate.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     Initiation options for initial conditions
       9                 :            :   \details   Initiation options for initial conditions
      10                 :            : */
      11                 :            : // *****************************************************************************
      12                 :            : #ifndef InitiateOptions_h
      13                 :            : #define InitiateOptions_h
      14                 :            : 
      15                 :            : #include <brigand/sequences/list.hpp>
      16                 :            : 
      17                 :            : #include "Toggle.hpp"
      18                 :            : #include "Keywords.hpp"
      19                 :            : #include "PUPUtil.hpp"
      20                 :            : 
      21                 :            : namespace inciter {
      22                 :            : namespace ctr {
      23                 :            : 
      24                 :            : //! Initiation types
      25                 :            : enum class InitiateType : uint8_t { IMPULSE
      26                 :            :                                   , LINEAR };
      27                 :            : 
      28                 :            : //! Pack/Unpack InitiateType: forward overload to generic enum class packer
      29                 :            : inline void operator|( PUP::er& p, InitiateType& e ) { PUP::pup( p, e ); }
      30                 :            : 
      31                 :            : //! \brief Initiation options: outsource to base templated on enum type
      32         [ -  + ]:          4 : class Initiate : public tk::Toggle< InitiateType > {
      33                 :            : 
      34                 :            :   public:
      35                 :            :     //! Valid expected choices to make them also available at compile-time
      36                 :            :     using keywords = brigand::list< kw::impulse
      37                 :            :                                   , kw::linear
      38                 :            :                                   >;
      39                 :            : 
      40                 :            :     //! \brief Options constructor
      41                 :            :     //! \details Simply initialize in-line and pass associations to base, which
      42                 :            :     //!    will handle client interactions
      43                 :          4 :     explicit Initiate() :
      44                 :            :       tk::Toggle< InitiateType >(
      45                 :            :         //! Group, i.e., options, name
      46                 :          4 :         kw::initiate::name(),
      47                 :            :         //! Enums -> names (if defined, policy codes, if not, name)
      48                 :          4 :         { { InitiateType::IMPULSE, kw::impulse::name() },
      49 [ -  + ][ -  - ]:          4 :           { InitiateType::LINEAR, kw::linear::name() } },
      50                 :            :         //! keywords -> Enums
      51                 :          4 :         { { kw::impulse::string(), InitiateType::IMPULSE },
      52 [ +  - ][ +  - ]:         40 :           { kw::linear::string(), InitiateType::LINEAR } } )
         [ +  + ][ -  + ]
         [ -  + ][ +  + ]
         [ -  + ][ -  + ]
         [ -  + ][ -  - ]
         [ -  - ][ -  - ]
         [ -  - ][ -  - ]
         [ -  - ][ -  - ]
      53                 :          4 :     {}
      54                 :            : 
      55                 :            : };
      56                 :            : 
      57                 :            : } // ctr::
      58                 :            : } // inciter::
      59                 :            : 
      60                 :            : #endif // InitiateOptions_h

Generated by: LCOV version 1.14