Line data Source code
1 0 : // Distributed under the MIT License. 2 : // See LICENSE.txt for details. 3 : 4 : #pragma once 5 : 6 : #include <cstddef> 7 : #include <memory> 8 : #include <vector> 9 : 10 : #include "Evolution/Tags.hpp" 11 : #include "Options/String.hpp" 12 : #include "Time/StepChoosers/StepChooser.hpp" 13 : 14 : namespace OptionTags { 15 : /// \ingroup OptionTagsGroup 16 : /// \ingroup TimeGroup 17 0 : struct StepChoosers { 18 0 : static constexpr Options::String help{"Limits on LTS step size"}; 19 0 : using type = 20 : std::vector<std::unique_ptr<::StepChooser<StepChooserUse::LtsStep>>>; 21 0 : static size_t lower_bound_on_size() { return 1; } 22 0 : using group = evolution::OptionTags::Group; 23 : }; 24 : } // namespace OptionTags