Revision 09d085bd8f8975f9c11c1bda786bbc20b622008d authored by Lars Bilke on 19 February 2021, 07:44:36 UTC, committed by Lars Bilke on 19 February 2021, 07:44:36 UTC
Update doxygen links

See merge request ogs/ogs!3438
2 parent s 2b80bbf + b949454
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