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 : 180 : 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 [ - + ][ - - ]: 180 : { InitPolicyType::ZERO, kw::zero::name() },
63 [ - + ][ - - ]: 180 : { InitPolicyType::JOINTDELTA, kw::jointdelta::name() },
64 [ - + ][ - - ]: 180 : { InitPolicyType::JOINTGAUSSIAN, kw::jointgaussian::name() },
65 [ - + ][ - - ]: 180 : { InitPolicyType::JOINTCORRGAUSSIAN, kw::jointcorrgaussian::name() },
66 [ - + ][ - - ]: 180 : { InitPolicyType::JOINTBETA, kw::jointbeta::name() },
67 [ - + ][ - - ]: 180 : { InitPolicyType::JOINTGAMMA, kw::jointgamma::name() },
68 [ - + ][ - - ]: 180 : { InitPolicyType::JOINTDIRICHLET, kw::jointdirichlet::name() } },
69 : : //! keywords -> Enums
70 : 180 : { { kw::raw::string(), InitPolicyType::RAW },
71 [ - + ][ - - ]: 180 : { kw::zero::string(), InitPolicyType::ZERO },
72 [ - + ][ - - ]: 180 : { kw::jointdelta::string(), InitPolicyType::JOINTDELTA },
73 [ - + ][ - - ]: 180 : { kw::jointgaussian::string(), InitPolicyType::JOINTGAUSSIAN },
74 [ - + ][ - - ]: 180 : { kw::jointcorrgaussian::string(),
75 : : InitPolicyType::JOINTCORRGAUSSIAN },
76 [ - + ][ - - ]: 180 : { kw::jointbeta::string(), InitPolicyType::JOINTBETA },
77 [ - + ][ - - ]: 180 : { kw::jointgamma::string(), InitPolicyType::JOINTGAMMA },
78 [ + - ][ + - ]: 3780 : { kw::jointdirichlet::string(), InitPolicyType::JOINTDIRICHLET } } )
[ + - ][ + + ]
[ + + ][ - + ]
[ + + ][ + + ]
[ - + ][ - + ]
[ - - ][ - - ]
[ - - ][ - - ]
[ - - ][ - - ]
[ - - ]
79 : 180 : {}
80 : : };
81 : :
82 : : } // ctr::
83 : : } // walker::
84 : :
85 : : #endif // InitPolicyOptions_h
|