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