OGS
CreateIterationNumberBasedTimeStepping.h
Go to the documentation of this file.
1
10#pragma once
11
12#include <memory>
13#include <vector>
14
15namespace BaseLib
16{
17class ConfigTree;
18}
19
20namespace NumLib
21{
22class TimeStepAlgorithm;
23}
24
25namespace NumLib
26{
29std::unique_ptr<TimeStepAlgorithm> createIterationNumberBasedTimeStepping(
30 BaseLib::ConfigTree const& config,
31 std::vector<double> const& fixed_times_for_output);
32} // namespace NumLib
std::unique_ptr< TimeStepAlgorithm > createIterationNumberBasedTimeStepping(BaseLib::ConfigTree const &config, std::vector< double > const &fixed_times_for_output)