Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/Control/Inciter/Options/PrefIndicator.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 Options for adaptive indicators for p-adaptive DG scheme. 9 : : \details Options for adaptive indicators for p-adaptive DG scheme. 10 : : */ 11 : : // ***************************************************************************** 12 : : #ifndef InciterPrefIndicatorOptions_h 13 : : #define InciterPrefIndicatorOptions_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 : : //! Types of adaptive indicators 25 : : enum class PrefIndicatorType : uint8_t { SPECTRAL_DECAY 26 : : , NON_CONFORMITY }; 27 : : 28 : : //! Pack/Unpack PrefIndicatorType: forward overload to generic enum class 29 : : //! packer 30 : 1798 : inline void operator|( PUP::er& p, PrefIndicatorType& e ) { PUP::pup( p, e ); } 31 : : 32 : : //! PrefIndicator options: outsource searches to base templated on enum type 33 : : class PrefIndicator : public tk::Toggle< PrefIndicatorType > { 34 : : 35 : : public: 36 : : //! Valid expected choices to make them also available at compile-time 37 : : using keywords = brigand::list< kw::pref_spectral_decay 38 : : , kw::pref_non_conformity >; 39 : : 40 : : //! \brief Options constructor 41 : : //! \details Simply initialize in-line and pass associations to base, which 42 : : //! will handle client interactions 43 : 12 : explicit PrefIndicator() : 44 : : tk::Toggle< PrefIndicatorType >( 45 : : //! Group, i.e., options, name 46 [ + - ]: 24 : kw::pref_indicator::name(), 47 : : //! Enums -> names 48 : 0 : { { PrefIndicatorType::SPECTRAL_DECAY, 49 [ + - ]: 12 : kw::pref_spectral_decay::name() }, 50 : 0 : { PrefIndicatorType::NON_CONFORMITY, 51 [ + - ]: 24 : kw::pref_non_conformity::name() } }, 52 : : //! keywords -> Enums 53 : 0 : { { kw::pref_spectral_decay::string(), 54 : 0 : PrefIndicatorType::SPECTRAL_DECAY }, 55 [ + - ]: 24 : { kw::pref_non_conformity::string(), 56 [ + - ][ + - ]: 144 : PrefIndicatorType::NON_CONFORMITY } } ) {} [ + - ][ + + ] [ + + ][ - - ] [ - - ] 57 : : }; 58 : : 59 : : } // ctr:: 60 : : } // inciter:: 61 : : 62 : : #endif // InciterPrefIndicatorOptions_h