Revision eab70dad234aaea233e8c00f282c7b8841abd62c authored by renchao.lu on 12 May 2021, 16:59:46 UTC, committed by renchao.lu on 12 May 2021, 16:59:46 UTC
Improve description of tag <chemically_induced_porosity_change>

Closes #3148

See merge request ogs/ogs!3620
2 parent s a5dbf0f + 9c18c45
Raw File
NumericsConfig.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

/**
 * This file provides a configuration of the global matrix/vector and
 * corresponding linear solver, and the global executer types.
 */

#include "MathLib/LinAlg/GlobalMatrixVectorTypes.h"

//
// Global executor
//
#include "NumLib/Assembler/SerialExecutor.h"
using GlobalExecutor = NumLib::SerialExecutor;
back to top