https://gitlab.opengeosys.org/ogs/ogs.git
Revision 0866cbdff16e55a5e5d8c9efcab84fdd04d89d26 authored by Dmitri Naumov on 17 September 2021, 12:28:05 UTC, committed by Dmitri Naumov on 22 September 2021, 09:23:01 UTC
And with it all of the checks and recalculations are obsolete
and removed too.
1 parent f803723
Raw File
Tip revision: 0866cbdff16e55a5e5d8c9efcab84fdd04d89d26 authored by Dmitri Naumov on 17 September 2021, 12:28:05 UTC
[MeL] Remove Mesh-internal number of base nodes.
Tip revision: 0866cbd
CreateChemicalSolverInterface.h
/**
 * \file
 * \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
 *
 */

#pragma once

#include <map>
#include <memory>
#include <string>
#include <vector>

#include "ChemicalSolverType.h"
#include "MathLib/LinAlg/GlobalMatrixVectorTypes.h"

namespace BaseLib
{
class ConfigTree;
}

namespace MeshLib
{
class Mesh;
}

namespace ChemistryLib
{
class ChemicalSolverInterface;

template <ChemicalSolver chemical_solver>
std::unique_ptr<ChemicalSolverInterface> createChemicalSolverInterface(
    std::vector<std::unique_ptr<MeshLib::Mesh>> const& meshes,
    std::map<std::string, std::unique_ptr<GlobalLinearSolver>> const&
        linear_solvers,
    BaseLib::ConfigTree const& config, std::string const& output_directory);
}  // namespace ChemistryLib
back to top