Line data Source code
1 0 : // Distributed under the MIT License. 2 : // See LICENSE.txt for details. 3 : 4 : #pragma once 5 : 6 : #include "Evolution/Tags.hpp" 7 : #include "Options/String.hpp" 8 : #include "Time/VariableOrderAlgorithm.hpp" 9 : 10 : namespace OptionTags { 11 : /// \ingroup OptionTagsGroup 12 : /// \ingroup TimeGroup 13 : /// \brief Algorithm for changing the time-stepper order in a 14 : /// variable-order evolution. 15 : /// \see ChangeTimeStepperOrder 16 1 : struct VariableOrderAlgorithm { 17 0 : using type = ::VariableOrderAlgorithm; 18 0 : static constexpr Options::String help = 19 : "Algorithm for changing the time-stepper order in a variable-order " 20 : "evolution."; 21 0 : using group = evolution::OptionTags::Group; 22 : }; 23 : } // namespace OptionTags