Branch data Line data Source code
1 : : // *****************************************************************************
2 : : /*!
3 : : \file src/Control/RNGTest/Options/Battery.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 Random number generator test suite batteries options
9 : : \details Random number generator test suite batteries options
10 : : */
11 : : // *****************************************************************************
12 : : #ifndef RNGTestBatteryOptions_h
13 : : #define RNGTestBatteryOptions_h
14 : :
15 : : #include <brigand/sequences/list.hpp>
16 : :
17 : : #include "Toggle.hpp"
18 : : #include "Keywords.hpp"
19 : : #include "PUPUtil.hpp"
20 : :
21 : : namespace rngtest {
22 : : namespace ctr {
23 : :
24 : : //! Random number generator battery types
25 : : enum class BatteryType : uint8_t { NO_BATTERY=0,
26 : : SMALLCRUSH,
27 : : CRUSH,
28 : : BIGCRUSH };
29 : :
30 : : //! Pack/Unpack BatteryType: forward overload to generic enum class packer
31 : 52 : inline void operator|( PUP::er& p, BatteryType& e ) { PUP::pup( p, e ); }
32 : :
33 : : //! \brief Battery options: outsource searches to base templated on enum type
34 : : class Battery : public tk::Toggle< BatteryType > {
35 : :
36 : : public:
37 : : //! Valid expected choices to make them also available at compile-time
38 : : using keywords = brigand::list< kw::smallcrush
39 : : , kw::crush
40 : : , kw::bigcrush
41 : : >;
42 : :
43 : : //! \brief Options constructor
44 : : //! \details Simply initialize in-line and pass associations to base, which
45 : : //! will handle client interactions
46 : 17 : explicit Battery() :
47 : : tk::Toggle< BatteryType >(
48 : : //! Group, i.e., options, name
49 : : "RNG battery",
50 : : //! Enums -> names
51 : 0 : { { BatteryType::NO_BATTERY, "n/a" },
52 [ + - ]: 17 : { BatteryType::SMALLCRUSH, kw::smallcrush::name() },
53 [ + - ]: 34 : { BatteryType::CRUSH, kw::crush::name() },
54 [ + - ]: 34 : { BatteryType::BIGCRUSH, kw::bigcrush::name() } },
55 : : //! keywords -> Enums
56 : 34 : { { "no_battery", BatteryType::NO_BATTERY },
57 [ + - ]: 17 : { kw::smallcrush::string(), BatteryType::SMALLCRUSH },
58 [ + - ]: 34 : { kw::crush::string(), BatteryType::CRUSH },
59 [ + - ][ + - ]: 272 : { kw::bigcrush::string(), BatteryType::BIGCRUSH } } ) {}
[ + - ][ + - ]
[ + - ][ + - ]
[ + - ][ + + ]
[ + + ][ - - ]
[ - - ]
60 : : };
61 : :
62 : : } // ctr::
63 : : } // rngtest::
64 : :
65 : : #endif // RNGTestBatteryOptions_h
|