https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: b2208f32ad904cb171be2ac218c6dcd82685d7d4 authored by Dmitri Naumov on 25 March 2021, 09:33:07 UTC
[PL/THM] Add initial_stress input.
Tip revision: b2208f3
CreateTimeStepper.h
/**
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 *  \file
 *  Created on May 2, 2017, 12:18 PM
 */

#pragma once

#include <memory>

namespace BaseLib
{
class ConfigTree;
}

namespace NumLib
{
class TimeStepAlgorithm;
std::unique_ptr<TimeStepAlgorithm> createTimeStepper(
    BaseLib::ConfigTree const& config);
};
back to top